Skip to content

Commit

Permalink
Bump rspec-core dependency to < 3.6.0
Browse files Browse the repository at this point in the history
Bumps mutant version as well since this requires a gem release
  • Loading branch information
backus committed Jul 3, 2016
1 parent 60a0888 commit 9b14d83
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/mutant/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Mutant
# Current mutant version
VERSION = '0.8.10'.freeze
VERSION = '0.8.11'.freeze
end # Mutant
2 changes: 1 addition & 1 deletion mutant-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
gem.extra_rdoc_files = %w[TODO LICENSE]

gem.add_runtime_dependency('mutant', "~> #{gem.version}")
gem.add_runtime_dependency('rspec-core', '>= 3.3.0', '< 3.5.0')
gem.add_runtime_dependency('rspec-core', '>= 3.3.0', '< 3.6.0')

gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
end
2 changes: 1 addition & 1 deletion spec/integration/mutant/rspec_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

let(:base_cmd) { 'bundle exec mutant -I lib --require test_app --use rspec' }

%w[3.3 3.4].each do |version|
%w[3.3 3.4 3.5].each do |version|
context "RSpec #{version}" do
let(:gemfile) { "Gemfile.rspec#{version}" }

Expand Down
7 changes: 7 additions & 0 deletions test_app/Gemfile.rspec3.5
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
source 'https://rubygems.org'
gem 'rspec', '~> 3.5.0'
gem 'rspec-core', '~> 3.5.0'
gem 'mutant', path: '../'
gem 'mutant-rspec', path: '../'
gem 'adamantium'
eval_gemfile File.expand_path('../../Gemfile.shared', __FILE__)

0 comments on commit 9b14d83

Please sign in to comment.