sanger-jsonapi-resources 0.1.0 → 0.1.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9bc1314c078c61f44653dd5aa8b24e271853bf8be84b5d41eced75795b56ad2
|
4
|
+
data.tar.gz: deee25658162d4971d977153214a2373db3599708f4c69d94d8662a5f90cdcfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24e0ea2c4aa90ceab8dd3b5a5f38a127566a1e8bc7b58d83b1e5f22a488df0f4bc1eeef8685a0fd60ff35efdbed68ca75be6d9b662f6a0da95fa150da783dadd
|
7
|
+
data.tar.gz: baee2a71eff19ef87efc2e6223ae93b5d47e346859cf777bf197f377eefe5dda886627c2bfa65a90294dda427b8f3724580ed85e887a3ff0d19435c5b9a0aca0
|
data/README.md
CHANGED
@@ -28,7 +28,7 @@ which *should* be compatible with JSON:API compliant server implementations such
|
|
28
28
|
|
29
29
|
Add JR to your application's `Gemfile`:
|
30
30
|
|
31
|
-
gem 'jsonapi-resources'
|
31
|
+
gem 'sanger-jsonapi-resources'
|
32
32
|
|
33
33
|
And then execute:
|
34
34
|
|
@@ -36,7 +36,7 @@ And then execute:
|
|
36
36
|
|
37
37
|
Or install it yourself as:
|
38
38
|
|
39
|
-
$ gem install jsonapi-resources
|
39
|
+
$ gem install sanger-jsonapi-resources
|
40
40
|
|
41
41
|
**For further usage see the [v0.9 beta Guide](http://jsonapi-resources.com/v0.9/guide/)**
|
42
42
|
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# As we are packaging 'sanger-jsonapi-resources' as a separate gem, RubyGems expects
|
2
|
+
# the main file to be 'lib/sanger-jsonapi-resources.rb' to match the gem name.
|
3
|
+
# Without this file, requiring the gem or Rails autoloading would fail, even if the internal code is unchanged.
|
4
|
+
# This file exists to ensure compatibility with RubyGems and Bundler.
|
5
|
+
# The easiest solution is to use this wrapper file, which simply requires the original 'jsonapi-resources' code,
|
6
|
+
# so all internal references and modules remain unchanged and compatible.
|
7
|
+
require_relative 'jsonapi-resources'
|
metadata
CHANGED
@@ -1,30 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sanger-jsonapi-resources
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
- Larry Gebhardt
|
7
|
+
- PSD Team - Wellcome Trust Sanger Institute
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-17 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: bundler
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
16
|
requirements:
|
18
|
-
- - "
|
17
|
+
- - ">="
|
19
18
|
- !ruby/object:Gem::Version
|
20
19
|
version: '1.5'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3.0'
|
21
23
|
type: :development
|
22
24
|
prerelease: false
|
23
25
|
version_requirements: !ruby/object:Gem::Requirement
|
24
26
|
requirements:
|
25
|
-
- - "
|
27
|
+
- - ">="
|
26
28
|
- !ruby/object:Gem::Version
|
27
29
|
version: '1.5'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.0'
|
28
33
|
- !ruby/object:Gem::Dependency
|
29
34
|
name: rake
|
30
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -151,11 +156,24 @@ dependencies:
|
|
151
156
|
- - ">="
|
152
157
|
- !ruby/object:Gem::Version
|
153
158
|
version: '0'
|
154
|
-
|
155
|
-
|
159
|
+
- !ruby/object:Gem::Dependency
|
160
|
+
name: csv
|
161
|
+
requirement: !ruby/object:Gem::Requirement
|
162
|
+
requirements:
|
163
|
+
- - ">="
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: '0'
|
166
|
+
type: :runtime
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
requirements:
|
170
|
+
- - ">="
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
version: '0'
|
173
|
+
description: Forked from jsonapi-resources. A resource-centric approach to implementing
|
174
|
+
the controllers, routes, and serializers needed to support the JSON API spec.
|
156
175
|
email:
|
157
|
-
-
|
158
|
-
- larry@cerebris.com
|
176
|
+
- psd@sanger.ac.uk
|
159
177
|
executables: []
|
160
178
|
extensions: []
|
161
179
|
extra_rdoc_files: []
|
@@ -197,7 +215,8 @@ files:
|
|
197
215
|
- lib/jsonapi/resources/version.rb
|
198
216
|
- lib/jsonapi/response_document.rb
|
199
217
|
- lib/jsonapi/routing_ext.rb
|
200
|
-
|
218
|
+
- lib/sanger-jsonapi-resources.rb
|
219
|
+
homepage: https://github.com/sanger/jsonapi-resources
|
201
220
|
licenses:
|
202
221
|
- MIT
|
203
222
|
metadata: {}
|