Remove hard ruby version requirement

This commit is contained in:
Markus Schirp 2018-12-04 13:18:04 +00:00
parent 84d119fe49
commit dcf6b8d562
5 changed files with 11 additions and 11 deletions

View File

@ -1,3 +1,7 @@
# v0.8.22 2018-12-04
* Remove hard ruby version requirement. 2.5 is still the only officially supported version.
# v0.8.21 2018-12-03
* Change to modern ast format via unparser-0.4.1.

View File

@ -1,7 +1,7 @@
PATH
remote: .
specs:
mutant (0.8.20)
mutant (0.8.22)
abstract_type (~> 0.0.7)
adamantium (~> 0.2.0)
anima (~> 0.3.0)
@ -15,9 +15,9 @@ PATH
parser (~> 2.5.1)
procto (~> 0.0.2)
regexp_parser (~> 1.2)
unparser (~> 0.4.0)
mutant-rspec (0.8.20)
mutant (~> 0.8.20)
unparser (~> 0.4.2)
mutant-rspec (0.8.22)
mutant (~> 0.8.22)
rspec-core (>= 3.4.0, < 4.0.0)
GEM
@ -141,7 +141,7 @@ GEM
simplecov-html (0.10.2)
thread_safe (0.3.6)
unicode-display_width (1.4.0)
unparser (0.4.0)
unparser (0.4.2)
abstract_type (~> 0.0.7)
adamantium (~> 0.2.0)
concord (~> 0.1.5)

View File

@ -2,5 +2,5 @@
module Mutant
# Current mutant version
VERSION = '0.8.21'.freeze
VERSION = '0.8.22'.freeze
end # Mutant

View File

@ -19,6 +19,4 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency('mutant', "~> #{gem.version}")
gem.add_runtime_dependency('rspec-core', '>= 3.4.0', '< 4.0.0')
gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
end

View File

@ -21,8 +21,6 @@ Gem::Specification.new do |gem|
gem.extra_rdoc_files = %w[LICENSE]
gem.executables = %w[mutant]
gem.required_ruby_version = '>= 2.5'
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
gem.add_runtime_dependency('adamantium', '~> 0.2.0')
gem.add_runtime_dependency('anima', '~> 0.3.0')
@ -36,7 +34,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency('parser', '~> 2.5.1')
gem.add_runtime_dependency('procto', '~> 0.0.2')
gem.add_runtime_dependency('regexp_parser', '~> 1.2')
gem.add_runtime_dependency('unparser', '~> 0.4.1')
gem.add_runtime_dependency('unparser', '~> 0.4.2')
gem.add_development_dependency('devtools', '~> 0.1.22')
gem.add_development_dependency('parallel', '~> 1.3')