Skip to content

Commit

Permalink
Relax rake gem constraint from <=11.x to <=12.x.
Browse files Browse the repository at this point in the history
Rake 12 has been released for quite some time. Given this gem doesn't
depend on `rake` per se (it is only required to avoid installing the
`ffi` gem on non-Windows environments), relax the constraint.

To prevent accidental breakage due to a new Rake release, we'll still
pin to < 13 for now.
  • Loading branch information
sds committed Feb 3, 2019
1 parent 37e6c0a commit 28b786b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion childprocess.gemspec
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
s.add_development_dependency "yard", "~> 0.0"
s.add_development_dependency 'coveralls', '< 1.0'

s.add_runtime_dependency 'rake', '< 12.0'
s.add_runtime_dependency 'rake', '< 13.0'

# Install FFI gem if we're running on Windows
s.extensions = 'ext/mkrf_conf.rb'
Expand Down

0 comments on commit 28b786b

Please sign in to comment.