Upgrade gem dependencies
* Need to temporarily disable rubocop since it uses an older version of parser.
This commit is contained in:
parent
8c158aa778
commit
e8ecdab025
2 changed files with 11 additions and 8 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
group :development do
|
||||
gem 'rake', '~> 10.1.0'
|
||||
gem 'rspec', '~> 2.13.0'
|
||||
gem 'rspec', '~> 2.14.1'
|
||||
gem 'yard', '~> 0.8.6.2'
|
||||
end
|
||||
|
||||
|
@ -14,7 +14,7 @@ group :guard do
|
|||
gem 'guard', '~> 1.8.1'
|
||||
gem 'guard-bundler', '~> 1.0.0'
|
||||
gem 'guard-rspec', '~> 3.0.2'
|
||||
gem 'guard-rubocop', '~> 0.2.0'
|
||||
# gem 'guard-rubocop', '~> 0.2.0'
|
||||
|
||||
# file system change event handling
|
||||
gem 'listen', '~> 1.2.2'
|
||||
|
@ -30,13 +30,17 @@ end
|
|||
|
||||
group :metrics do
|
||||
gem 'coveralls', '~> 0.6.7'
|
||||
gem 'flay', '~> 2.3.0'
|
||||
gem 'flog', '~> 4.1.0'
|
||||
gem 'flay', '~> 2.3.1'
|
||||
gem 'flog', '~> 4.1.1'
|
||||
gem 'reek', '~> 1.3.1', :git => 'https://github.com/troessner/reek.git'
|
||||
gem 'rubocop', '~> 0.9.1'
|
||||
# gem 'rubocop', '~> 0.9.1'
|
||||
gem 'simplecov', '~> 0.7.1'
|
||||
gem 'yardstick', '~> 0.9.6'
|
||||
|
||||
platforms :ruby_19, :ruby_20 do
|
||||
gem 'yard-spellcheck', '~> 0.1.5'
|
||||
end
|
||||
|
||||
platforms :ruby_19 do
|
||||
gem 'json', '~> 1.8.0'
|
||||
end
|
||||
|
|
|
@ -9,7 +9,6 @@ Gem::Specification.new do |gem|
|
|||
gem.description = 'Mutation testing for ruby'
|
||||
gem.summary = 'Mutation testing tool for ruby under MRI and Rubinius'
|
||||
gem.homepage = 'https://github.com/mbj/mutant'
|
||||
|
||||
gem.license = 'MIT'
|
||||
|
||||
gem.require_paths = [ 'lib' ]
|
||||
|
@ -18,7 +17,7 @@ Gem::Specification.new do |gem|
|
|||
gem.extra_rdoc_files = %w[TODO LICENSE]
|
||||
gem.executables = [ 'mutant', 'zombie' ]
|
||||
|
||||
gem.add_runtime_dependency('parser', '~> 2.0.pre2')
|
||||
gem.add_runtime_dependency('parser', '~> 2.0.0.pre2')
|
||||
gem.add_runtime_dependency('unparser', '~> 0.0.8')
|
||||
gem.add_runtime_dependency('ice_nine', '~> 0.8.0')
|
||||
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.1')
|
||||
|
@ -27,5 +26,5 @@ Gem::Specification.new do |gem|
|
|||
gem.add_runtime_dependency('inflecto', '~> 0.0.2')
|
||||
gem.add_runtime_dependency('anima', '~> 0.0.6')
|
||||
gem.add_runtime_dependency('concord', '~> 0.1.1')
|
||||
gem.add_runtime_dependency('rspec', '~> 2.13.0')
|
||||
gem.add_runtime_dependency('rspec', '~> 2.14.1')
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue