activesupport-deprecation_test_helper 0.1.1 → 0.1.2.pre.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/active_support/deprecation_test_helper.rb +1 -1
- data/lib/active_support/deprecation_test_helper/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7dadc53bd38cbfbe6b3b020fe1c21e47b0f76a541e29471e93f50a2ecde13df2
|
4
|
+
data.tar.gz: 11f67844b2bc35e7e3465230884d1edae482fdf4faacd19263afff813d6036c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1287873fbf1c654817f63bf5742eca7c201a0827fb3e2ede18759a2ca7132b6796b2a187b65f978842063fd5f340a012f5ae93fa82cd017f11dbfd9f979e5a17
|
7
|
+
data.tar.gz: a7ddfbfd5fa2259fdc7e4be184a50658502acb0121797530839fc4e31f6aea223096905f5957e0fd120e7fb27ffcc5913cb60e2ec7caf9b360ba11cb3a337965
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
5
5
|
Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## [0.1.2] - 2020-06-18
|
8
|
+
### Fixed
|
9
|
+
- RSpec configuration bug where after(:suite) callback was unable to execute successfully
|
10
|
+
|
7
11
|
## [0.1.1] - 2020-06-18
|
8
12
|
### Fixed
|
9
13
|
- RSpec configuration no longer runs multiple times during the test run
|
data/Gemfile.lock
CHANGED
@@ -16,7 +16,7 @@ module ActiveSupport
|
|
16
16
|
|
17
17
|
case test_framework
|
18
18
|
when :rspec
|
19
|
-
RSpec.configuration.after(:suite) { after_all_callback.call }
|
19
|
+
RSpec.configuration.after(:suite) { ActiveSupport::DeprecationTestHelper.after_all_callback.call }
|
20
20
|
when :minitest
|
21
21
|
Minitest.after_run(&after_all_callback)
|
22
22
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activesupport-deprecation_test_helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.1
|
4
|
+
version: 0.1.2.pre.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Invoca
|
@@ -78,9 +78,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
78
78
|
version: '0'
|
79
79
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
80
|
requirements:
|
81
|
-
- - "
|
81
|
+
- - ">"
|
82
82
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
83
|
+
version: 1.3.1
|
84
84
|
requirements: []
|
85
85
|
rubygems_version: 3.0.3
|
86
86
|
signing_key:
|