Skip to content

Commit

Permalink
Fix incorrect required_ruby_version (#985)
Browse files Browse the repository at this point in the history
This gem has used String#delete_suffix which was introduced at Ruby 2.5.
https://github.com/whitequark/parser/blob/95d26953ebe823211845fb84cb93c18cd501f561/lib/parser/lexer/literal.rb#L250

Ref. https://github.com/ruby/ruby/blob/ruby_2_5/NEWS

So, even Ruby 2.0 can be installed now, however it will not work.
  • Loading branch information
Watson1978 committed Jan 6, 2024
1 parent 95d2695 commit 3f2bbef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.0.0'
spec.required_ruby_version = '>= 2.5.0'

spec.add_dependency 'ast', '~> 2.4.1'
spec.add_dependency 'racc'
Expand Down

0 comments on commit 3f2bbef

Please sign in to comment.