Skip to content

Commit

Permalink
Relax brakeman dependency
Browse files Browse the repository at this point in the history
This change modifies the gemspec to remove the pessimistic operator to
limit brakeman to be a version < 4.0. With the release of brakeman 4.0,
this should allow users of this gem to update their brakeman
dependencies to the latest version, while also continuing to support the
use of > 3.2 versions of brakeman.
  • Loading branch information
kevin-j-m committed Sep 26, 2017
1 parent 783054e commit c1c0841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pronto-brakeman.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']

s.add_runtime_dependency('pronto', '~> 0.9.0')
s.add_runtime_dependency('brakeman', '~> 3.2', '>= 3.2.0')
s.add_runtime_dependency('brakeman', '>= 3.2.0')
s.add_development_dependency('rake', '~> 12.0')
s.add_development_dependency('rspec', '~> 3.4')
s.add_development_dependency('rspec-its', '~> 1.2')
Expand Down

0 comments on commit c1c0841

Please sign in to comment.