Skip to content
This repository was archived by the owner on Nov 30, 2024. It is now read-only.

Update rake dependency to avoid security warning #408

Merged
merged 1 commit into from
Apr 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ branch = File.read(File.expand_path("../maintenance-branch", __FILE__)).chomp
end
end

if RUBY_VERSION < '1.9.3'
gem 'rake', '< 11.0.0' # rake 11 requires Ruby 1.9.3 or later
elsif RUBY_VERSION < '2.0.0'
gem 'rake', '< 12.0.0' # rake 12 requires Ruby 2.0.0 or later
else
gem 'rake', '>= 12.3.2'
end

### dep for ci/coverage
gem 'simplecov', '~> 0.8'

Expand Down
2 changes: 1 addition & 1 deletion rspec-support.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = '>= 1.8.7'

spec.add_development_dependency "rake", "~> 10.0.0"
spec.add_development_dependency "rake", "> 10.0.0"
spec.add_development_dependency "thread_order", "~> 1.1.0"
end