jsonapi-realizer 6.1.2 → 6.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/jsonapi/realizer/error/{invalid_data_type_property.rb → invalid_accept_type_header.rb} +3 -2
- data/lib/jsonapi/realizer/error/{missing_root_property.rb → missing_accept_type_header.rb} +1 -1
- data/lib/jsonapi/realizer/error.rb +2 -4
- data/lib/jsonapi/realizer/version.rb +1 -1
- metadata +3 -6
- data/lib/jsonapi/realizer/error/include_without_data_property.rb +0 -10
- data/lib/jsonapi/realizer/error/invalid_root_property.rb +0 -15
- data/lib/jsonapi/realizer/error/missing_data_type_property.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14861545f76adf51438c3ed901e109eea2bf619523ca09a14e1696ff95ec50c1
|
4
|
+
data.tar.gz: 667bd76c3a17968a74346bde0e4ecacb7dc0c4f75e199d51b78e5406e5688a4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa15bebefd38c647386d967471202e3ec1ed296f51798058828c93b576c709eb39e74316e9d11e6793522c3d56850483f008aff7e9bdf6b7199a419dc91ca2a9
|
7
|
+
data.tar.gz: 7a35e4b35d27a8a899283414dc2b07bd19caeb53325353fea2e5285d58c699cf4099508f93a30e150ef9f457b828b767bdad1be51872faf8b692b80e7754007c
|
data/lib/jsonapi/realizer/error/{invalid_data_type_property.rb → invalid_accept_type_header.rb}
RENAMED
@@ -3,11 +3,12 @@
|
|
3
3
|
module JSONAPI
|
4
4
|
module Realizer
|
5
5
|
class Error
|
6
|
-
class
|
6
|
+
class InvalidAcceptTypeHeader < Error
|
7
7
|
attr_accessor(:given)
|
8
|
+
attr_accessor(:wanted)
|
8
9
|
|
9
10
|
def message
|
10
|
-
"
|
11
|
+
"HTTP Accept Header recieved is #{given}, but expected #{wanted}"
|
11
12
|
end
|
12
13
|
end
|
13
14
|
end
|
@@ -5,12 +5,10 @@ module JSONAPI
|
|
5
5
|
class Error < StandardError
|
6
6
|
include(ActiveModel::Model)
|
7
7
|
|
8
|
+
require_relative("error/invalid_accept_type_header")
|
9
|
+
require_relative("error/missing_accept_type_header")
|
8
10
|
require_relative("error/invalid_content_type_header")
|
9
11
|
require_relative("error/missing_content_type_header")
|
10
|
-
require_relative("error/invalid_root_property")
|
11
|
-
require_relative("error/missing_root_property")
|
12
|
-
require_relative("error/missing_data_type_property")
|
13
|
-
require_relative("error/include_without_data_property")
|
14
12
|
require_relative("error/resource_attribute_not_found")
|
15
13
|
require_relative("error/resource_relationship_not_found")
|
16
14
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jsonapi-realizer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.1.
|
4
|
+
version: 6.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kurtis Rainbolt-Greene
|
@@ -72,13 +72,10 @@ files:
|
|
72
72
|
- lib/jsonapi/realizer/context.rb
|
73
73
|
- lib/jsonapi/realizer/controller.rb
|
74
74
|
- lib/jsonapi/realizer/error.rb
|
75
|
-
- lib/jsonapi/realizer/error/
|
75
|
+
- lib/jsonapi/realizer/error/invalid_accept_type_header.rb
|
76
76
|
- lib/jsonapi/realizer/error/invalid_content_type_header.rb
|
77
|
-
- lib/jsonapi/realizer/error/
|
78
|
-
- lib/jsonapi/realizer/error/invalid_root_property.rb
|
77
|
+
- lib/jsonapi/realizer/error/missing_accept_type_header.rb
|
79
78
|
- lib/jsonapi/realizer/error/missing_content_type_header.rb
|
80
|
-
- lib/jsonapi/realizer/error/missing_data_type_property.rb
|
81
|
-
- lib/jsonapi/realizer/error/missing_root_property.rb
|
82
79
|
- lib/jsonapi/realizer/error/resource_attribute_not_found.rb
|
83
80
|
- lib/jsonapi/realizer/error/resource_relationship_not_found.rb
|
84
81
|
- lib/jsonapi/realizer/resource.rb
|