easy-jsonapi 1.0.3 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/codecov.yml +8 -10
- data/.github/workflows/publish.yml +3 -6
- data/.rspec_status +492 -487
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/.travis.yml +8 -0
- data/CHANGELOG.md +24 -0
- data/Gemfile.lock +2 -2
- data/README.md +21 -15
- data/docs/UsingTheRequestObject.md +1 -1
- data/docs/UsingUserConfigurations.md +1 -1
- data/easy-jsonapi.gemspec +1 -1
- data/lib/easy/jsonapi/exceptions/headers_exceptions.rb +18 -16
- data/lib/easy/jsonapi/exceptions/query_params_exceptions.rb +1 -1
- data/lib/easy/jsonapi/exceptions/user_defined_exceptions.rb +6 -2
- data/lib/easy/jsonapi/middleware.rb +23 -25
- data/lib/easy/jsonapi/parser/json_parser.rb +1 -1
- data/lib/easy/jsonapi/request/query_param_collection.rb +9 -3
- metadata +4 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: easy-jsonapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joshua DeMoss, Joe Viscomi
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -140,6 +140,7 @@ files:
|
|
140
140
|
- ".rubocop.yml"
|
141
141
|
- ".ruby-gemset"
|
142
142
|
- ".ruby-version"
|
143
|
+
- ".travis.yml"
|
143
144
|
- CHANGELOG.md
|
144
145
|
- CODE_OF_CONDUCT.md
|
145
146
|
- Gemfile
|
@@ -248,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
248
249
|
- !ruby/object:Gem::Version
|
249
250
|
version: '0'
|
250
251
|
requirements: []
|
251
|
-
rubygems_version: 3.2.
|
252
|
+
rubygems_version: 3.2.15
|
252
253
|
signing_key:
|
253
254
|
specification_version: 4
|
254
255
|
summary: Middleware, Parser, and Validator for JSONAPI requests and serialized resopnses
|