petail 1.3.0 → 1.4.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
- checksums.yaml.gz.sig +0 -0
- data/README.adoc +2 -0
- data/petail.gemspec +6 -1
- data.tar.gz.sig +0 -0
- metadata +5 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24ef92dc268fd8fb544d5f631a3f1b16a5dad34d2ea25b6ed28f3e79b7273a26
|
|
4
|
+
data.tar.gz: e95ced59d292b420ba64cb6019cdc1d4d5efe19c0c4c30c7a14e836ba19d1db2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b3a2a17aa494226dc206203ffcf7861e98a6d4b9c22aecaf0c4a116a79d920e05551b11df52ddb79f972bdc6a3b0e390e8864efc81b9f0a1b367062b689f632
|
|
7
|
+
data.tar.gz: 4a9a7586e705de44eae8b0be308c97b83f7572ee396b8cb5906dc7b0572d39c41e4b82fe16b969fa8ee95facf51f00ecca68d110f7e6f3c8f4561a422f74562f
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/README.adoc
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
= Petail
|
|
6
6
|
|
|
7
|
+
‼️ *This gem is deprecated and will be fully destroyed on 2027-02-05. Please use the link:https://alchemists.io/projects/rfc-api-problem[RFC API Problem] gem instead.* ‼️
|
|
8
|
+
|
|
7
9
|
Petail is a portmanteau (i.e. `[p]roblem + d[etail] = petail`) that implements link:https://www.rfc-editor.org/rfc/rfc9457[RFC 9457: Problem Details for HTTP APIs]. This allows you to produce HTTP error responses that are structured, machine readable, and consistent.
|
|
8
10
|
|
|
9
11
|
toc::[]
|
data/petail.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "petail"
|
|
5
|
-
spec.version = "1.
|
|
5
|
+
spec.version = "1.4.0"
|
|
6
6
|
spec.authors = ["Brooke Kuhlmann"]
|
|
7
7
|
spec.email = ["brooke@alchemists.io"]
|
|
8
8
|
spec.homepage = "https://alchemists.io/projects/petail"
|
|
@@ -19,6 +19,11 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
"source_code_uri" => "https://github.com/bkuhlmann/petail"
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
spec.post_install_message = <<~MESSAGE
|
|
23
|
+
DEPRECATION: The Petail gem is deprecated and will be fully destroyed on 2027-02-05.
|
|
24
|
+
Please use the RFC API Problem gem instead.
|
|
25
|
+
MESSAGE
|
|
26
|
+
|
|
22
27
|
spec.signing_key = Gem.default_key_path
|
|
23
28
|
spec.cert_chain = [Gem.default_cert_path]
|
|
24
29
|
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: petail
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brooke Kuhlmann
|
|
@@ -95,6 +95,9 @@ metadata:
|
|
|
95
95
|
label: Petail
|
|
96
96
|
rubygems_mfa_required: 'true'
|
|
97
97
|
source_code_uri: https://github.com/bkuhlmann/petail
|
|
98
|
+
post_install_message: |
|
|
99
|
+
DEPRECATION: The Petail gem is deprecated and will be fully destroyed on 2027-02-05.
|
|
100
|
+
Please use the RFC API Problem gem instead.
|
|
98
101
|
rdoc_options: []
|
|
99
102
|
require_paths:
|
|
100
103
|
- lib
|
|
@@ -109,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
109
112
|
- !ruby/object:Gem::Version
|
|
110
113
|
version: '0'
|
|
111
114
|
requirements: []
|
|
112
|
-
rubygems_version: 4.0.
|
|
115
|
+
rubygems_version: 4.0.19
|
|
113
116
|
specification_version: 4
|
|
114
117
|
summary: A RFC 9457 Problem Details for HTTP APIs implementation.
|
|
115
118
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|