Skip to content

Commit

Permalink
Merge pull request #68 from buehmann/relax-rack-dependency
Browse files Browse the repository at this point in the history
Relax rack dependency for Rails 4
  • Loading branch information
koic authored Jun 8, 2019
2 parents c4e05e5 + bd166f6 commit ce2c5a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rubocop-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ Gem::Specification.new do |s|
'bug_tracker_uri' => 'https://github.com/rubocop-hq/rubocop-rails/issues'
}

s.add_runtime_dependency 'rack', '>= 2.0'
# Rack::Utils::SYMBOL_TO_STATUS_CODE, which is used by HttpStatus cop, was
# introduced in rack 1.1
s.add_runtime_dependency 'rack', '>= 1.1'
s.add_runtime_dependency 'rubocop', '>= 0.70.0'
end
# rubocop:enable Metrics/BlockLength

0 comments on commit ce2c5a4

Please sign in to comment.