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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3fe15f10f0376668ba0ac7b35bd384df5a59660d
4
- data.tar.gz: ca3c40566dca8a225f2709ca24e29a4c1167635d
3
+ metadata.gz: 18294e3191d6e67529299f8cea4904f1806cc976
4
+ data.tar.gz: ed25742b8c53fd515ce5be58dd38cf25fac13305
5
5
  SHA512:
6
- metadata.gz: 1642e90c3547c749da6367962d63bb55ce763146f0446ded5862b4a16dc3476102bb9a38d709ba617ff713e6a3f20c7139cb43ee07883df2f47dfd89a0b7686b
7
- data.tar.gz: a875c9a1a68b690019b5e6af989217d5cd3cba07323fb7d5fc2f7e5c9c7029746ad779f41a3a8bc008c89b8891745fd065df9d47b70a684079db1f6f79ae1180
6
+ metadata.gz: 13b9634cc3cb4aa94197948d3c5d49bfbc9058bbdd21254a0669d44cc77b37a0d7885304778b574353aed351a1ad0054ff77e592b497ac2bf424aeec650ecc9b
7
+ data.tar.gz: 0b561a8849b3d9a3b8f28ebae2a2a5ba53427a892f2f6bc0a99fbae83e16c5be4f2ccf3c3e45d90eee1543f425ea54f4a4216ef656ba71a7c52059402a80a125
data/Dockerfile CHANGED
@@ -1,9 +1,7 @@
1
- FROM ruby:2.3.1
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 Gemfile /simple_jsonapi_client/Gemfile
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
@@ -1,3 +1,3 @@
1
1
  module SimpleJSONAPIClient
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.1"
3
3
  end
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.1.1
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-08 00:00:00.000000000 Z
11
+ date: 2018-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday