goodreads 0.8.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +2 -2
- data/README.md +13 -2
- data/goodreads.gemspec +1 -1
- data/lib/goodreads/client/authors.rb +8 -0
- data/lib/goodreads/version.rb +1 -1
- data/spec/client_spec.rb +17 -0
- data/spec/fixtures/author_books.xml +1338 -0
- metadata +7 -5
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: goodreads
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Sosedoff
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: webmock
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
103
|
+
version: 4.1.0
|
104
104
|
type: :runtime
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
110
|
+
version: 4.1.0
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: activesupport
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
@@ -189,6 +189,7 @@ files:
|
|
189
189
|
- spec/authentication_spec.rb
|
190
190
|
- spec/client_spec.rb
|
191
191
|
- spec/fixtures/author.xml
|
192
|
+
- spec/fixtures/author_books.xml
|
192
193
|
- spec/fixtures/author_by_name.xml
|
193
194
|
- spec/fixtures/book.xml
|
194
195
|
- spec/fixtures/empty.xml
|
@@ -230,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
230
231
|
- !ruby/object:Gem::Version
|
231
232
|
version: '0'
|
232
233
|
requirements: []
|
233
|
-
rubygems_version: 3.0.
|
234
|
+
rubygems_version: 3.0.8
|
234
235
|
signing_key:
|
235
236
|
specification_version: 4
|
236
237
|
summary: Goodreads API wrapper
|
@@ -238,6 +239,7 @@ test_files:
|
|
238
239
|
- spec/authentication_spec.rb
|
239
240
|
- spec/client_spec.rb
|
240
241
|
- spec/fixtures/author.xml
|
242
|
+
- spec/fixtures/author_books.xml
|
241
243
|
- spec/fixtures/author_by_name.xml
|
242
244
|
- spec/fixtures/book.xml
|
243
245
|
- spec/fixtures/empty.xml
|