activesupport-deprecation_test_helper 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b3bffe1ea806cc77cc0e856b08c814b02dc0e776e4d6985601ed6f3ece33b1b0
4
- data.tar.gz: 8aebf5acabc55256f7f102a68002ce4351b39d463d531af3f83d20e3324005d8
3
+ metadata.gz: 86d5f70ba087c179678f7988408723d9f6b46f65db19fdd74a1eed10bd11b36c
4
+ data.tar.gz: 359a8f9dbaab27092731a9367dfb7f203351537dde1852864c33c4e164d05bad
5
5
  SHA512:
6
- metadata.gz: 84fbcf01ee0daf64f8a7765498d990737dd5f86d63fe8984a1b5b42b30a634e403ff73f4121d45d88dac32d6064c4b5cad3d06e866a176dee50d3e93cca63232
7
- data.tar.gz: 245d79eed7825c92d5baefabf6552b067e3810f338b7d3463f9f67760273e5f6abf04352d7cde5c8bd92b8c8081de8e288b169d9046b9592f7e1f8e46bbfafa4
6
+ metadata.gz: 553765d0da0b759bab56c061370178740bb46879cddb0d592571ddc9215706741cc529e2df385e104aa99dc5f47501357dff8cb3f3df5468fd50c429a6b67c1a
7
+ data.tar.gz: 02eb1ab2ead804629457e0ce9ddba82e5eb5fdfc2f974593b71f72427d272dee3c1ddacf278360881cf20b032c7d88aecde4e44e18797a7b10925da3b79334fe
@@ -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.1] - 2020-06-18
8
+ ### Fixed
9
+ - RSpec configuration no longer runs multiple times during the test run
10
+
7
11
  ## [0.1.0] - 2020-06-18
8
12
  ### Added
9
13
  - Added ability to configure your tests to record and report unexpected deprecation warnings
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activesupport-deprecation_test_helper (0.1.0)
4
+ activesupport-deprecation_test_helper (0.1.1)
5
5
  activesupport (>= 4.2, < 7)
6
6
 
7
7
  GEM
@@ -16,7 +16,7 @@ module ActiveSupport
16
16
 
17
17
  case test_framework
18
18
  when :rspec
19
- RSpec.configuration.after(:all, &after_all_callback)
19
+ RSpec.configuration.after(:suite) { after_all_callback.call }
20
20
  when :minitest
21
21
  Minitest.after_run(&after_all_callback)
22
22
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveSupport
4
4
  module DeprecationTestHelper
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Invoca