Skip to content

Commit

Permalink
Required keyword arguments only in ruby >2.1
Browse files Browse the repository at this point in the history
TIL
  • Loading branch information
rwojsznis committed Nov 14, 2015
1 parent 00b60eb commit f5a44e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ sudo: false
cache: bundler

rvm:
- 2.0.0
- 2.1
- 2.2
- jruby
- jruby-head
- rbx-2
- ruby-head

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Date: 2015-11-14

**Breaking change - dropped support for ruby 1.9.3**
**Breaking change - Ruby >= 2.1 required**

## 2.0.0rc1

Expand Down
2 changes: 1 addition & 1 deletion workable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.0.0'
spec.required_ruby_version = '>= 2.1.0'

spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.1.0'
Expand Down

0 comments on commit f5a44e0

Please sign in to comment.