Skip to content

Commit

Permalink
Fix parser version constraint
Browse files Browse the repository at this point in the history
- As pointed out in #42 (thanks @chiastolite!), `rspectre` uses features from `parser` that are only available in 2.5 (see #21). The APIs that are in use should also be compatible with 3.x and because `parser` is intended to have a permanently stable API (or, as close to that as possible), this can just be changed to >= 2.5 for now.
  • Loading branch information
dgollahon committed Jun 19, 2021
1 parent b1777ab commit b820e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rspectre.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |gem|

gem.add_runtime_dependency('anima', '~> 0.3')
gem.add_runtime_dependency('concord', '~> 0.1')
gem.add_runtime_dependency('parser', '~> 2.3')
gem.add_runtime_dependency('parser', '>= 2.5')
gem.add_runtime_dependency('rspec', '~> 3.0')

gem.add_development_dependency('pry', '~> 0.10')
Expand Down

0 comments on commit b820e8c

Please sign in to comment.