rescue_registry 0.3.0 → 1.0.0
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 +4 -0
- data/Rakefile +6 -1
- data/lib/rescue_registry/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3575942ac21357ea65531cb89bf233d75a2dc983d220f279cc5c5ebac0c6c3be
|
|
4
|
+
data.tar.gz: c3c3a52aa8fe8ed34d66fe0b03062282793a24c0df69c456ef92afca1e0e7f8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: add3e437decc5c77801e74e2a1d3f5330122a142578c6133e57eae884d638323e35a984dcbcfa0e6e3845d21680675e08a0f5f0d82e4f4cfec8afacb76e08842
|
|
7
|
+
data.tar.gz: 50dc6cc1cdb148cc22590b1854f9f6d285c6a7a693ad4b4fc4e6711e2058632854aad07d0b118e7a0231d514241616faea48296b6c707be71222586e3249c2e2
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [1.0.0] - 2022-02-03
|
|
11
|
+
### Changed
|
|
12
|
+
- Removed upper version bound to support Ruby 3.1. (thanks @nulldotpro)
|
|
13
|
+
|
|
10
14
|
## [0.3.0] - 2021-05-11
|
|
11
15
|
### Changed
|
|
12
16
|
- For better JSONAPI spec compliance, errors payloads will not include the `details` key when value is `null`.
|
data/Rakefile
CHANGED
|
@@ -4,6 +4,7 @@ rescue LoadError
|
|
|
4
4
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
5
5
|
end
|
|
6
6
|
|
|
7
|
+
require 'rails/version'
|
|
7
8
|
require 'yard'
|
|
8
9
|
require 'rspec/core/rake_task'
|
|
9
10
|
require 'bundler/gem_tasks'
|
|
@@ -14,7 +15,11 @@ RSpec::Core::RakeTask.new(:spec) do |t|
|
|
|
14
15
|
t.rspec_opts = "--order random"
|
|
15
16
|
end
|
|
16
17
|
|
|
17
|
-
|
|
18
|
+
if Rails::VERSION::MAJOR < 7
|
|
19
|
+
APP_RAKEFILE = File.expand_path("spec/rails5/dummy/Rakefile", __dir__)
|
|
20
|
+
else
|
|
21
|
+
APP_RAKEFILE = File.expand_path("spec/rails7/dummy/Rakefile", __dir__)
|
|
22
|
+
end
|
|
18
23
|
load "rails/tasks/engine.rake"
|
|
19
24
|
|
|
20
25
|
task default: :spec
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rescue_registry
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Wagenet
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -123,16 +123,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
123
123
|
- - ">="
|
|
124
124
|
- !ruby/object:Gem::Version
|
|
125
125
|
version: '2.3'
|
|
126
|
-
- - "<"
|
|
127
|
-
- !ruby/object:Gem::Version
|
|
128
|
-
version: '3.1'
|
|
129
126
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
127
|
requirements:
|
|
131
128
|
- - ">="
|
|
132
129
|
- !ruby/object:Gem::Version
|
|
133
130
|
version: '0'
|
|
134
131
|
requirements: []
|
|
135
|
-
rubygems_version: 3.
|
|
132
|
+
rubygems_version: 3.3.3
|
|
136
133
|
signing_key:
|
|
137
134
|
specification_version: 4
|
|
138
135
|
summary: Registry for Rails Exceptions
|