activesupport-deprecation_test_helper 0.1.0.pre.2 → 0.1.0

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: 612b8874f6a51588c16a6cfe8b617ed4b81d47514e41a92838c00669f3eb591c
4
- data.tar.gz: a0536f9995b5576b589d3fb897ece6ce33b6f923a80fb9598aefa60e6103f7d9
3
+ metadata.gz: b3bffe1ea806cc77cc0e856b08c814b02dc0e776e4d6985601ed6f3ece33b1b0
4
+ data.tar.gz: 8aebf5acabc55256f7f102a68002ce4351b39d463d531af3f83d20e3324005d8
5
5
  SHA512:
6
- metadata.gz: 1e05336a10b1b035317d0dbfad233246f7f6bbff7e1a1ddfd420ae44f60ef5cdd2db4f6ee9e22292b7b849eb9642f12670a2beb36562c9520197d02527597cdf
7
- data.tar.gz: 9e54eb1b74904a709b6223f5d28f11bbdcb3a0ab68845ee1380be420aae3d383b298177953e6d3fd5637a9f7835d3e112a296fb244c506f975ef19dae1bb2674
6
+ metadata.gz: 84fbcf01ee0daf64f8a7765498d990737dd5f86d63fe8984a1b5b42b30a634e403ff73f4121d45d88dac32d6064c4b5cad3d06e866a176dee50d3e93cca63232
7
+ data.tar.gz: 245d79eed7825c92d5baefabf6552b067e3810f338b7d3463f9f67760273e5f6abf04352d7cde5c8bd92b8c8081de8e288b169d9046b9592f7e1f8e46bbfafa4
@@ -4,9 +4,9 @@ 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.0] - Unreleased
8
- Initial release for the gem
7
+ ## [0.1.0] - 2020-06-18
9
8
  ### Added
10
9
  - Added ability to configure your tests to record and report unexpected deprecation warnings
10
+ - Added support for configuration in `Minitest` and `RSpec`
11
11
 
12
12
  [0.1.0]: https://github.com/Invoca/active_support-deprecation_warning_helper/tree/v0.1.0
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activesupport-deprecation_test_helper (0.1.0.pre.2)
4
+ activesupport-deprecation_test_helper (0.1.0)
5
5
  activesupport (>= 4.2, < 7)
6
6
 
7
7
  GEM
@@ -9,8 +9,11 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Invoca"]
10
10
  spec.email = ["operations@invoca.com"]
11
11
 
12
- spec.summary = ""
13
- spec.description = ""
12
+ spec.summary = "A test helper that removes `ActiveSupport::Deprecation` noise from being interlaced in your test output."
13
+ spec.description = [
14
+ "A test helper that removes `ActiveSupport::Deprecation` noise from being interlaced in your test output.",
15
+ "Instead this gem collects any and all deprecation warnings that occur during your tests, and succinctly reports them at the end of the test run."
16
+ ].join(' ')
14
17
  spec.homepage = "https://github.com/Invoca/active_support-deprecation_test_helper"
15
18
 
16
19
  spec.metadata = {
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveSupport
4
4
  module DeprecationTestHelper
5
- VERSION = "0.1.0.pre.2"
5
+ VERSION = "0.1.0"
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.pre.2
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Invoca
@@ -30,7 +30,10 @@ dependencies:
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '7'
33
- description: ''
33
+ description: A test helper that removes `ActiveSupport::Deprecation` noise from being
34
+ interlaced in your test output. Instead this gem collects any and all deprecation
35
+ warnings that occur during your tests, and succinctly reports them at the end of
36
+ the test run.
34
37
  email:
35
38
  - operations@invoca.com
36
39
  executables: []
@@ -75,12 +78,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
75
78
  version: '0'
76
79
  required_rubygems_version: !ruby/object:Gem::Requirement
77
80
  requirements:
78
- - - ">"
81
+ - - ">="
79
82
  - !ruby/object:Gem::Version
80
- version: 1.3.1
83
+ version: '0'
81
84
  requirements: []
82
85
  rubygems_version: 3.0.3
83
86
  signing_key:
84
87
  specification_version: 4
85
- summary: ''
88
+ summary: A test helper that removes `ActiveSupport::Deprecation` noise from being
89
+ interlaced in your test output.
86
90
  test_files: []