Skip to content
This repository was archived by the owner on Aug 23, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).

## [Master (Unreleased)]

## [0.0.8] - 2017-11-08

### Added

- Added support for RSpec 3.7 [[#88](https://github.com/backus/mutest/pull/88/files) ([@damireh][])]

## [0.0.7] - 2017-06-18

### Added
Expand Down Expand Up @@ -67,7 +73,8 @@ First proper RubyGems release

<!-- Version diffs -->

[Master (Unreleased)]: https://github.com/backus/mutest/compare/v0.0.7...HEAD
[Master (Unreleased)]: https://github.com/backus/mutest/compare/v0.0.8...HEAD
[0.0.8]: https://github.com/backus/mutest/compare/v0.0.7...v0.0.8
[0.0.7]: https://github.com/backus/mutest/compare/v0.0.6...v0.0.7
[0.0.6]: https://github.com/backus/mutest/compare/v0.0.5...v0.0.6
[0.0.5]: https://github.com/backus/mutest/compare/v0.0.4...v0.0.5
Expand All @@ -80,3 +87,4 @@ First proper RubyGems release
[@backus]: https://github.com/backus
[@dgollahon]: https://github.com/dgollahon
[@mvz]: https://github.com/mvz
[@damireh]: https://github.com/damireh
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
mutest (0.0.7)
mutest (0.0.8)
abstract_type (~> 0.0.7)
adamantium (~> 0.2.0)
anima (~> 0.3.0)
Expand Down Expand Up @@ -137,4 +137,4 @@ DEPENDENCIES
simplecov (~> 0.13.0)

BUNDLED WITH
1.15.1
1.16.0
2 changes: 1 addition & 1 deletion lib/mutest/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Mutest
# Current mutest version
VERSION = '0.0.7'.freeze
VERSION = '0.0.8'.freeze
end # Mutest
2 changes: 1 addition & 1 deletion mutest-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[LICENSE]

gem.add_runtime_dependency('mutest', "~> #{gem.version}")
gem.add_runtime_dependency('rspec-core', '>= 3.4.0', '< 3.7.0')
gem.add_runtime_dependency('rspec-core', '>= 3.4.0', '< 3.8.0')

gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
end
2 changes: 1 addition & 1 deletion spec/integration/mutest/rspec_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RSpec.describe 'rspec integration', mutest: false do
let(:base_cmd) { 'bundle exec mutest -I lib --require test_app --use rspec' }

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

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