Skip to content

Commit

Permalink
Bring back support for 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mbj committed Jan 14, 2015
1 parent c16621b commit 53d487b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 79 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -4,12 +4,13 @@ script: "bundle exec rake ci"
env:
- TRAVIS=true
rvm:
- '1.9'
- '2.0'
- '2.1'
- rbx-2
- rbx
matrix:
allow_failures:
- rvm: rbx-2 # travis does not maintain rbx setup correctly
- rvm: rbx
notifications:
irc:
channels:
Expand Down
2 changes: 1 addition & 1 deletion config/flay.yml
@@ -1,3 +1,3 @@
---
threshold: 18
total_score: 1224
total_score: 1220
1 change: 0 additions & 1 deletion lib/mutant.rb
Expand Up @@ -218,7 +218,6 @@ def inspect
require 'mutant/reporter/cli/printer'
require 'mutant/reporter/cli/tput'
require 'mutant/reporter/cli/format'
require 'mutant/line_trace'
require 'mutant/zombifier'
require 'mutant/zombifier/file'

Expand Down
34 changes: 0 additions & 34 deletions lib/mutant/line_trace.rb

This file was deleted.

4 changes: 2 additions & 2 deletions mutant.gemspec
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
gem.extra_rdoc_files = %w[TODO LICENSE]
gem.executables = %w[mutant]

gem.required_ruby_version = '>= 2.0.0'
gem.required_ruby_version = '>= 1.9.3'

gem.add_runtime_dependency('parser', '~> 2.2.0.2')
gem.add_runtime_dependency('ast', '~> 2.0')
Expand All @@ -30,7 +30,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency('morpher', '~> 0.2.3')
gem.add_runtime_dependency('procto', '~> 0.0.2')
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
gem.add_runtime_dependency('unparser', '~> 0.2.0')
gem.add_runtime_dependency('unparser', '~> 0.2.2')
gem.add_runtime_dependency('ice_nine', '~> 0.11.1')
gem.add_runtime_dependency('adamantium', '~> 0.2.0')
gem.add_runtime_dependency('memoizable', '~> 0.4.2')
Expand Down
38 changes: 0 additions & 38 deletions spec/unit/mutant/line_trace_spec.rb

This file was deleted.

2 changes: 1 addition & 1 deletion spec/unit/mutant/reporter/trace_spec.rb
Expand Up @@ -4,6 +4,6 @@
describe '#delay' do
subject { object.delay }

it { should equal(0.0) }
it { should eql(0.0) }
end
end

0 comments on commit 53d487b

Please sign in to comment.