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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3bffe1ea806cc77cc0e856b08c814b02dc0e776e4d6985601ed6f3ece33b1b0
|
4
|
+
data.tar.gz: 8aebf5acabc55256f7f102a68002ce4351b39d463d531af3f83d20e3324005d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84fbcf01ee0daf64f8a7765498d990737dd5f86d63fe8984a1b5b42b30a634e403ff73f4121d45d88dac32d6064c4b5cad3d06e866a176dee50d3e93cca63232
|
7
|
+
data.tar.gz: 245d79eed7825c92d5baefabf6552b067e3810f338b7d3463f9f67760273e5f6abf04352d7cde5c8bd92b8c8081de8e288b169d9046b9592f7e1f8e46bbfafa4
|
data/CHANGELOG.md
CHANGED
@@ -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] -
|
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
|
data/Gemfile.lock
CHANGED
@@ -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 = {
|
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.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:
|
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: []
|