Bump parser version to pull csend fix
This commit is contained in:
parent
3c2a02da0f
commit
d04425904e
2 changed files with 3 additions and 7 deletions
|
@ -41,12 +41,8 @@ module Mutant
|
|||
# Nodes that are NOT generated by parser but used by mutant / unparser.
|
||||
EXTRA = symbolset.(%w[empty])
|
||||
|
||||
# Nodes that are currently missing from Parser::Meta::NODE_TYPES
|
||||
# * https://github.com/whitequark/parser/pull/251
|
||||
MISSING = symbolset.(%w[csend])
|
||||
|
||||
# All node types mutant handles
|
||||
ALL = symbolset.((Parser::Meta::NODE_TYPES + EXTRA + MISSING) - BLACKLIST)
|
||||
ALL = symbolset.((Parser::Meta::NODE_TYPES + EXTRA) - BLACKLIST)
|
||||
end # Types
|
||||
end # AST
|
||||
end # Mutant
|
||||
|
|
|
@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
|
|||
|
||||
gem.required_ruby_version = '>= 2.1'
|
||||
|
||||
gem.add_runtime_dependency('parser', '~> 2.3.0')
|
||||
gem.add_runtime_dependency('parser', '~> 2.3.0', '>= 2.3.0.2')
|
||||
gem.add_runtime_dependency('ast', '~> 2.2')
|
||||
gem.add_runtime_dependency('diff-lcs', '~> 1.2')
|
||||
gem.add_runtime_dependency('parallel', '~> 1.3')
|
||||
|
@ -36,7 +36,7 @@ Gem::Specification.new do |gem|
|
|||
gem.add_runtime_dependency('anima', '~> 0.3.0')
|
||||
gem.add_runtime_dependency('concord', '~> 0.1.5')
|
||||
|
||||
gem.add_development_dependency('devtools', '~> 0.1.3')
|
||||
gem.add_development_dependency('devtools', '~> 0.1.4')
|
||||
gem.add_development_dependency('bundler', '~> 1.10')
|
||||
gem.add_development_dependency('ffi', '~> 1.9.6')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue