simple_jsonapi_client 0.1.1 → 0.2.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 +4 -4
- data/Dockerfile +2 -4
- data/lib/simple_jsonapi_client/redirection/fetch_all.rb +1 -0
- data/lib/simple_jsonapi_client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 18294e3191d6e67529299f8cea4904f1806cc976
|
|
4
|
+
data.tar.gz: ed25742b8c53fd515ce5be58dd38cf25fac13305
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13b9634cc3cb4aa94197948d3c5d49bfbc9058bbdd21254a0669d44cc77b37a0d7885304778b574353aed351a1ad0054ff77e592b497ac2bf424aeec650ecc9b
|
|
7
|
+
data.tar.gz: 0b561a8849b3d9a3b8f28ebae2a2a5ba53427a892f2f6bc0a99fbae83e16c5be4f2ccf3c3e45d90eee1543f425ea54f4a4216ef656ba71a7c52059402a80a125
|
data/Dockerfile
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
FROM ruby:2.
|
|
1
|
+
FROM ruby:2.4.0
|
|
2
2
|
RUN apt-get update -qq
|
|
3
3
|
RUN gem update bundler
|
|
4
4
|
RUN mkdir /simple_jsonapi_client
|
|
5
5
|
WORKDIR /simple_jsonapi_client
|
|
6
|
-
ADD
|
|
7
|
-
ADD simple_jsonapi_client.gemspec /simple_jsonapi_client/simple_jsonapi_client.gemspec
|
|
8
|
-
ADD . /simple_jsonapi_client
|
|
6
|
+
ADD . .
|
|
9
7
|
RUN bundle install
|
|
@@ -5,6 +5,7 @@ module SimpleJSONAPIClient
|
|
|
5
5
|
class FetchAll < ::SimpleJSONAPIClient::Redirection::Proxy
|
|
6
6
|
def_delegators :internal_object, *(Array.instance_methods(false) - instance_methods)
|
|
7
7
|
def_delegators :internal_enumerator, *(Enumerator.instance_methods(false) - instance_methods)
|
|
8
|
+
def_delegators :internal_enumerator, *(Enumerable.instance_methods(false) - instance_methods)
|
|
8
9
|
|
|
9
10
|
def initialize(base_opts, &operation)
|
|
10
11
|
@base_opts = base_opts
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simple_jsonapi_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ariel Caplan
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-08-
|
|
11
|
+
date: 2018-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|