Skip to content

Commit

Permalink
Merge branch 'master' into 0.5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jodosha committed Jan 7, 2016
2 parents a231d19 + f5906d5 commit 853eb32
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ rvm:
- 2.1.5
- 2.1.6
- 2.1.7
- 2.1.8
- 2.2.0
- 2.2.1
- 2.2.2
- 2.2.3
- 2.2.4
- 2.3.0
- rbx-2
- jruby-head
- jruby-9000
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Lotus::Controller
Complete, fast and testable actions for Rack

## v0.5.0 - (unreleased)
## v0.5.0 - 2016-01-12
### Added
- [Luca Guidi] Allow to force HTTP header for status code that according to RFC shouldn't include them (eg. `204`)
- [Luca Guidi] Reference a raised exception in Rack env's `rack.exception`. Compatibility with exception reporting SaaS.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright © 2014-2015 Luca Guidi
Copyright © 2014-2016 Luca Guidi

MIT License

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1202,4 +1202,4 @@ __Lotus::Controller__ uses [Semantic Versioning 2.0.0](http://semver.org)

## Copyright

Copyright © 2014-2015 Luca Guidi – Released under MIT License
Copyright © 2014-2016 Luca Guidi – Released under MIT License
2 changes: 1 addition & 1 deletion lib/lotus/action/head.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def _requires_no_body?
# It returns a <tt>204</tt> but still wants to specify the rate limit
# quota via <tt>X-Rate-Limit</tt>.
#
# @since x.x.x
# @since 0.5.0
# @api public
#
# @see Lotus::Action::HEAD#finish
Expand Down
2 changes: 1 addition & 1 deletion lib/lotus/action/throwable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module Throwable
# Exception notifiers use <tt>rack.exception</tt> instead of
# <tt>rack.errors</tt>, so we need to support it.
#
# @since x.x.x
# @since 0.5.0
# @api private
#
# @see Lotus::Action::Throwable::RACK_ERRORS
Expand Down
2 changes: 1 addition & 1 deletion lib/lotus/controller/error.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Lotus
module Controller
# @since x.x.x
# @since 0.5.0
class Error < ::StandardError
end
end
Expand Down
4 changes: 2 additions & 2 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
SimpleCov::Formatter::HTMLFormatter,
Coveralls::SimpleCov::Formatter
]
])

SimpleCov.start do
command_name 'test'
Expand Down

0 comments on commit 853eb32

Please sign in to comment.