json_api_responders 2.7.0 → 2.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/json_api_responders.gemspec +1 -0
- data/lib/json_api_responders/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24ac85c0a9cead016e6a85f137862c45de681c4efd2f6c76c61c67375c976e75
|
4
|
+
data.tar.gz: 35714ae4317d6d3b1e60fa400d3bd9c90538cf9a70c8265802ba6d12cfc793a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e89a20f6ad1ef12fa75d3cd367ca02205fe998bf882859264ca4f34c824e93ebd8e72a28e843e854dfdcf7e224dafa8785f071ad0dd04c414c068a4bc5f3237
|
7
|
+
data.tar.gz: ea307d61e1032c6fb8641741f1586bf57d7987bc36482f73aee3fbe09385f8336311c3576083ef12105f24173bf3273ecc4778c676d218531b9b2c2f7f3bfb40
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2016 Infinum
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/json_api_responders.gemspec
CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = 'Automatically respond to JSON::API requests'
|
13
13
|
spec.description = 'Automatically respond to JSON::API requests'
|
14
14
|
spec.homepage = 'https://github.com/infinum/json_api_responders'
|
15
|
+
spec.license = 'MIT'
|
15
16
|
|
16
17
|
if spec.respond_to?(:metadata)
|
17
18
|
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json_api_responders
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stanko Krtalić Rusendić
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -137,6 +137,7 @@ files:
|
|
137
137
|
- ".travis.yml"
|
138
138
|
- Gemfile
|
139
139
|
- Gemfile.lock
|
140
|
+
- LICENSE
|
140
141
|
- README.md
|
141
142
|
- Rakefile
|
142
143
|
- bin/console
|
@@ -150,7 +151,8 @@ files:
|
|
150
151
|
- lib/json_api_responders/responder/sanitizers.rb
|
151
152
|
- lib/json_api_responders/version.rb
|
152
153
|
homepage: https://github.com/infinum/json_api_responders
|
153
|
-
licenses:
|
154
|
+
licenses:
|
155
|
+
- MIT
|
154
156
|
metadata:
|
155
157
|
allowed_push_host: https://rubygems.org
|
156
158
|
post_install_message:
|
@@ -168,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
168
170
|
- !ruby/object:Gem::Version
|
169
171
|
version: '0'
|
170
172
|
requirements: []
|
171
|
-
rubygems_version: 3.
|
173
|
+
rubygems_version: 3.4.5
|
172
174
|
signing_key:
|
173
175
|
specification_version: 4
|
174
176
|
summary: Automatically respond to JSON::API requests
|