knapsack_pro 1.20.0 → 1.20.1
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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/knapsack_pro/formatters/rspec_json_formatter.rb +1 -1
- data/lib/knapsack_pro/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 603cc339299caaeadecbe441f06abc2e8f169d0fa6acb6985dc286a770a120cd
|
|
4
|
+
data.tar.gz: 73b1e4583dbcc37d99aceeeb4029ffd2899bc3bc398b37278db1de36d92f44cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b5fcb7fd656ec4c9363b91c7b45cefb5b095588c53934fd5b173e68188059342a5d7545b344ec55cecd055917ea8cfb8413a438c453306c7769268d18c9c9f1b
|
|
7
|
+
data.tar.gz: ac11b94615e74cac40ffc49e5d62cf890f180d19912bc8dd6a13b27721b4286f5c22b0c49dbf2d37ce505e4d7b049393b078375dd4ccbfd7d3a7f1ba044eefb1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
### 1.20.1
|
|
4
|
+
|
|
5
|
+
* Fix bug in RSpec split by test examples in < RSpec 3.6.0 (related to custom json formatter)
|
|
6
|
+
|
|
7
|
+
https://github.com/KnapsackPro/knapsack_pro-ruby/pull/105
|
|
8
|
+
|
|
9
|
+
https://github.com/KnapsackPro/knapsack_pro-ruby/compare/v1.20.0...v1.20.1
|
|
10
|
+
|
|
3
11
|
### 1.20.0
|
|
4
12
|
|
|
5
13
|
* Add support for tests split by test examples to RSpec older than 3.6.0
|
|
@@ -4,7 +4,7 @@ RSpec::Support.require_rspec_core('formatters/json_formatter')
|
|
|
4
4
|
module KnapsackPro
|
|
5
5
|
module Formatters
|
|
6
6
|
class RSpecJsonFormatter < RSpec::Core::Formatters::JsonFormatter
|
|
7
|
-
RSpec::Core::Formatters.register self
|
|
7
|
+
RSpec::Core::Formatters.register self
|
|
8
8
|
|
|
9
9
|
private
|
|
10
10
|
|
data/lib/knapsack_pro/version.rb
CHANGED