mutest 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: accfe303b872672222caff0f1e8d6cf233120f48
4
- data.tar.gz: a176ed5591646234e393215b9b2619c7bcc80661
3
+ metadata.gz: 3c43e4e095c81df6729507cafced4101ecaca9df
4
+ data.tar.gz: b063abbff8f48724326bb6a7e34a9c7555cd2c06
5
5
  SHA512:
6
- metadata.gz: 229ddfaa29a990aeff3ad104a02fbcad1bad7bde6e52dfb66839bd65bc77d412349edc3158eaeb20b2f14aa186e61247045d417273cf4d674014d94078884469
7
- data.tar.gz: 34f0cb733d977de967f79d106f2aa1ea19cca7d6038ace1ab5d23501331c0d1a2e00935ef825c2e7f759e2cecb0822d86697cd30ba4e361191e3a68ba60c4c72
6
+ metadata.gz: daf1e13e23bb04ed9850908344828568794df1a862e9213368bed6aeb1173ad126ae5f298521f031e1a4488e6afe87c716965c2c8110fe2f35c3375a95c16fd9
7
+ data.tar.gz: 86f4fb4ece9446c31c855e65eacc73b05b1d688d6fa615ddc5bb47ddf3eae021478776bcf77739ec0895eb72381ba48e79cb5bdccbca0e96854bc67d0e97294b
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
6
6
 
7
7
  ## [Master (Unreleased)]
8
8
 
9
+ ## [0.0.8] - 2017-11-08
10
+
11
+ ### Added
12
+
13
+ - Added support for RSpec 3.7 [[#88](https://github.com/backus/mutest/pull/88/files) ([@damireh][])]
14
+
9
15
  ## [0.0.7] - 2017-06-18
10
16
 
11
17
  ### Added
@@ -67,7 +73,8 @@ First proper RubyGems release
67
73
 
68
74
  <!-- Version diffs -->
69
75
 
70
- [Master (Unreleased)]: https://github.com/backus/mutest/compare/v0.0.7...HEAD
76
+ [Master (Unreleased)]: https://github.com/backus/mutest/compare/v0.0.8...HEAD
77
+ [0.0.8]: https://github.com/backus/mutest/compare/v0.0.7...v0.0.8
71
78
  [0.0.7]: https://github.com/backus/mutest/compare/v0.0.6...v0.0.7
72
79
  [0.0.6]: https://github.com/backus/mutest/compare/v0.0.5...v0.0.6
73
80
  [0.0.5]: https://github.com/backus/mutest/compare/v0.0.4...v0.0.5
@@ -80,3 +87,4 @@ First proper RubyGems release
80
87
  [@backus]: https://github.com/backus
81
88
  [@dgollahon]: https://github.com/dgollahon
82
89
  [@mvz]: https://github.com/mvz
90
+ [@damireh]: https://github.com/damireh
@@ -11,7 +11,7 @@ GIT
11
11
  PATH
12
12
  remote: .
13
13
  specs:
14
- mutest (0.0.7)
14
+ mutest (0.0.8)
15
15
  abstract_type (~> 0.0.7)
16
16
  adamantium (~> 0.2.0)
17
17
  anima (~> 0.3.0)
@@ -137,4 +137,4 @@ DEPENDENCIES
137
137
  simplecov (~> 0.13.0)
138
138
 
139
139
  BUNDLED WITH
140
- 1.15.1
140
+ 1.16.0
@@ -1,4 +1,4 @@
1
1
  module Mutest
2
2
  # Current mutest version
3
- VERSION = '0.0.7'.freeze
3
+ VERSION = '0.0.8'.freeze
4
4
  end # Mutest
@@ -16,7 +16,7 @@ Gem::Specification.new do |gem|
16
16
  gem.extra_rdoc_files = %w[LICENSE]
17
17
 
18
18
  gem.add_runtime_dependency('mutest', "~> #{gem.version}")
19
- gem.add_runtime_dependency('rspec-core', '>= 3.4.0', '< 3.7.0')
19
+ gem.add_runtime_dependency('rspec-core', '>= 3.4.0', '< 3.8.0')
20
20
 
21
21
  gem.add_development_dependency('bundler', '~> 1.3', '>= 1.3.5')
22
22
  end
@@ -1,7 +1,7 @@
1
1
  RSpec.describe 'rspec integration', mutest: false do
2
2
  let(:base_cmd) { 'bundle exec mutest -I lib --require test_app --use rspec' }
3
3
 
4
- %w[3.4 3.5 3.6].each do |version|
4
+ %w[3.4 3.5 3.6 3.7].each do |version|
5
5
  context "RSpec #{version}" do
6
6
  let(:gemfile) { "Gemfile.rspec#{version}" }
7
7
 
@@ -0,0 +1,7 @@
1
+ source 'https://rubygems.org'
2
+ gem 'rspec', '~> 3.7.0'
3
+ gem 'rspec-core', '~> 3.7.0'
4
+ gem 'mutest', path: '../'
5
+ gem 'mutest-rspec', path: '../'
6
+ gem 'adamantium'
7
+ eval_gemfile File.expand_path('../../Gemfile.shared', __FILE__)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mutest
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Gollahon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-06-18 00:00:00.000000000 Z
12
+ date: 2017-11-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: parser
@@ -628,6 +628,7 @@ files:
628
628
  - test_app/Gemfile.rspec3.4
629
629
  - test_app/Gemfile.rspec3.5
630
630
  - test_app/Gemfile.rspec3.6
631
+ - test_app/Gemfile.rspec3.7
631
632
  - test_app/lib/test_app.rb
632
633
  - test_app/lib/test_app/literal.rb
633
634
  - test_app/spec/spec_helper.rb
@@ -652,7 +653,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
652
653
  version: '0'
653
654
  requirements: []
654
655
  rubyforge_project:
655
- rubygems_version: 2.6.11
656
+ rubygems_version: 2.6.13
656
657
  signing_key:
657
658
  specification_version: 4
658
659
  summary: Mutation testing for ruby