spyke 5.3.0 → 5.3.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 +5 -5
- data/.travis.yml +1 -0
- data/README.md +0 -1
- data/lib/spyke/http.rb +1 -1
- data/lib/spyke/version.rb +1 -1
- data/test/attributes_test.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 3a8f605cd12c22641c85ffdaf643cead8ef8eab997e347075596a7b7c9149e0c
|
|
4
|
+
data.tar.gz: 97caf4cac49eb5e66164193845e5a5bb60069cc910f349de38eaf01e0d7fd57c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1afad1b576ca01dd62b642da238ad80f2048da50a73ca387ed8df541a005601ba55a2c4769c881e991f79d40adbfa0992377989881dc49ce12c58174265ffd36
|
|
7
|
+
data.tar.gz: 6e99ad81b53c136acadb85bc5363510067cb7704bbdc74a8ad1c84c0b79ff0079ac5029e5aa6aa65b74e24446068d01e568fb4258080bdf4202ccb4c75303be9
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
Interact with remote <strong>REST services</strong> in an <strong>ActiveRecord-like</strong> manner.
|
|
7
7
|
<br /><br />
|
|
8
8
|
<a href="https://rubygems.org/gems/spyke"><img src="https://badge.fury.io/rb/spyke.svg?style=flat" alt="Gem Version"></a>
|
|
9
|
-
<a href='https://gemnasium.com/balvig/spyke'><img src="https://gemnasium.com/balvig/spyke.svg" /></a>
|
|
10
9
|
<a href="https://codeclimate.com/github/balvig/spyke"><img src="https://codeclimate.com/github/balvig/spyke/badges/gpa.svg" /></a>
|
|
11
10
|
<a href='https://coveralls.io/r/balvig/spyke?branch=master'><img src='https://img.shields.io/coveralls/balvig/spyke.svg?style=flat' /></a>
|
|
12
11
|
<a href="https://travis-ci.org/balvig/spyke"><img src="https://travis-ci.org/balvig/spyke.svg?branch=master" /></a>
|
data/lib/spyke/http.rb
CHANGED
data/lib/spyke/version.rb
CHANGED
data/test/attributes_test.rb
CHANGED
|
@@ -135,9 +135,9 @@ module Spyke
|
|
|
135
135
|
|
|
136
136
|
def test_inspect
|
|
137
137
|
recipe = Recipe.new(id: 2, title: 'Pizza', description: 'Delicious')
|
|
138
|
-
assert_equal '#<Recipe(recipes
|
|
138
|
+
assert_equal '#<Recipe(recipes(/:id)) id: 2 title: "Pizza" description: "Delicious">', recipe.inspect
|
|
139
139
|
recipe = Recipe.new
|
|
140
|
-
assert_equal '#<Recipe(recipes
|
|
140
|
+
assert_equal '#<Recipe(recipes(/:id)) id: nil >', recipe.inspect
|
|
141
141
|
user = Recipe.new.build_user
|
|
142
142
|
assert_equal '#<User(users/:uuid) id: nil >', user.inspect
|
|
143
143
|
group = Recipe.new.groups.build
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spyke
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.3.
|
|
4
|
+
version: 5.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jens Balvig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-06-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -316,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
316
316
|
version: '0'
|
|
317
317
|
requirements: []
|
|
318
318
|
rubyforge_project:
|
|
319
|
-
rubygems_version: 2.6
|
|
319
|
+
rubygems_version: 2.7.6
|
|
320
320
|
signing_key:
|
|
321
321
|
specification_version: 4
|
|
322
322
|
summary: Interact with REST services in an ActiveRecord-like manner
|