jsonapi_errors_handler 0.0.2 → 0.0.3
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/jsonapi_errors_handler-0.0.2.gem +0 -0
- data/jsonapi_errors_handler.gemspec +2 -2
- data/lib/jsonapi_errors_handler/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ae6f88da6bfca6bebd8417925b2226e1e8a649786a6f2a1eb0a0bce12c0987c0
|
|
4
|
+
data.tar.gz: 8e7d4f693976c09d2141cd63029021bda76f17b5aa3af49c966911465bc7fdaf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 945525e88fa59d012d4ee221c858b87f24bd40bec1cf156c32dbf6a97a29589bff94f14c76dab58049eec21359dcbecfef801402f6e7034e23246a24a4844fc5
|
|
7
|
+
data.tar.gz: 570297676c549cadab03a25b7098ac3e4fdffab9a2a38de91279bc90de02ef583175aee06aa1d364c4e566b8ef4543d8ef2d64dde3c6e50330b2ead6175fa34d
|
|
Binary file
|
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
|
|
11
11
|
spec.summary = %q{A JSON API error handler for ruby applications.}
|
|
12
12
|
spec.description = %q{This gem is a convienient wrapper for your application errors. It allows you to map any error to a nicely formatted standard HTTP error response. }
|
|
13
|
-
spec.homepage = "https://github.com/driggl/
|
|
13
|
+
spec.homepage = "https://github.com/driggl/jsonapi_errors_handler"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
|
|
|
19
19
|
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
|
20
20
|
|
|
21
21
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
22
|
-
spec.metadata["source_code_uri"] = "https://github.com/driggl/
|
|
22
|
+
spec.metadata["source_code_uri"] = "https://github.com/driggl/jsonapi_errors_handler"
|
|
23
23
|
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
24
24
|
else
|
|
25
25
|
raise "RubyGems 2.0 or newer is required to protect against " \
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jsonapi_errors_handler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sebastian Wilgosz
|
|
@@ -72,6 +72,7 @@ files:
|
|
|
72
72
|
- bin/setup
|
|
73
73
|
- jsonapi_errors_handler-0.0.0.gem
|
|
74
74
|
- jsonapi_errors_handler-0.0.1.gem
|
|
75
|
+
- jsonapi_errors_handler-0.0.2.gem
|
|
75
76
|
- jsonapi_errors_handler.gemspec
|
|
76
77
|
- lib/jsonapi_errors_handler.rb
|
|
77
78
|
- lib/jsonapi_errors_handler/error_mapper.rb
|
|
@@ -83,12 +84,12 @@ files:
|
|
|
83
84
|
- lib/jsonapi_errors_handler/errors/standard_error.rb
|
|
84
85
|
- lib/jsonapi_errors_handler/errors/unauthorized.rb
|
|
85
86
|
- lib/jsonapi_errors_handler/version.rb
|
|
86
|
-
homepage: https://github.com/driggl/
|
|
87
|
+
homepage: https://github.com/driggl/jsonapi_errors_handler
|
|
87
88
|
licenses:
|
|
88
89
|
- MIT
|
|
89
90
|
metadata:
|
|
90
|
-
homepage_uri: https://github.com/driggl/
|
|
91
|
-
source_code_uri: https://github.com/driggl/
|
|
91
|
+
homepage_uri: https://github.com/driggl/jsonapi_errors_handler
|
|
92
|
+
source_code_uri: https://github.com/driggl/jsonapi_errors_handler
|
|
92
93
|
post_install_message:
|
|
93
94
|
rdoc_options: []
|
|
94
95
|
require_paths:
|