googlebooksclient 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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +13 -5
- data/googlebooksclient-0.1.0.gem +0 -0
- data/googlebooksclient.gemspec +2 -2
- data/lib/googlebooksclient/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e3d05bca883f478111bdfa7f037f306397c990e717ca70b4d84ab7bd361230b6
|
|
4
|
+
data.tar.gz: 2711cb66ad2a4db0e1c4795c33889f419b43461264d7fa748a2ce8eae02b7af0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: deb0a02d62c777876f656db39f60b347e759b83817f1625170b9d2671dcc289b075b087b228c6722d21ac866c9215c2d294d8e445aed1bdc4e36b4205542717d
|
|
7
|
+
data.tar.gz: 27ab78e017a0b87a34cc22c34048a6153e4fbd34d184871fe8df1fbd3d651035afe4b8751b56bd32d968ad5955280d9cc3189203d872a63501cdf27d161a7182
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# Googlebooksclient
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
3
|
+
This is my first gem that I wrote as a simple Google Books API Client.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
@@ -22,7 +20,17 @@ Or install it yourself as:
|
|
|
22
20
|
|
|
23
21
|
## Usage
|
|
24
22
|
|
|
25
|
-
|
|
23
|
+
Add the gem to your Gemfile and bundle. You can then instantiate a new Googlebooksclient::Client object like so:
|
|
24
|
+
|
|
25
|
+
$ client = Googlebooksclient::Client.new
|
|
26
|
+
|
|
27
|
+
And then perform a simple Volume search:
|
|
28
|
+
|
|
29
|
+
$ client.volumes("The Wheel of Time")
|
|
30
|
+
|
|
31
|
+
Which will return an array of books!
|
|
32
|
+
|
|
33
|
+
Very simple so start, but hopefully I will build off of this base in the next version.
|
|
26
34
|
|
|
27
35
|
## Development
|
|
28
36
|
|
|
@@ -32,7 +40,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
32
40
|
|
|
33
41
|
## Contributing
|
|
34
42
|
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
43
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/babiesinspace/googlebooksclient.
|
|
36
44
|
|
|
37
45
|
## License
|
|
38
46
|
|
|
Binary file
|
data/googlebooksclient.gemspec
CHANGED
|
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ["Alex Cooper"]
|
|
10
10
|
spec.email = ["allie.g.cooper@gmail.com"]
|
|
11
11
|
|
|
12
|
-
spec.summary = "
|
|
13
|
-
spec.description = "
|
|
12
|
+
spec.summary = "This is my first gem that I wrote as a simple Google Books API Client."
|
|
13
|
+
spec.description = "A simple Google Books API Client"
|
|
14
14
|
spec.homepage = "https://github.com/babiesinspace/googlebooksclient"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: googlebooksclient
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Cooper
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-11-
|
|
11
|
+
date: 2018-11-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -66,7 +66,7 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 0.13.7
|
|
69
|
-
description:
|
|
69
|
+
description: A simple Google Books API Client
|
|
70
70
|
email:
|
|
71
71
|
- allie.g.cooper@gmail.com
|
|
72
72
|
executables: []
|
|
@@ -83,6 +83,7 @@ files:
|
|
|
83
83
|
- Rakefile
|
|
84
84
|
- bin/console
|
|
85
85
|
- bin/setup
|
|
86
|
+
- googlebooksclient-0.1.0.gem
|
|
86
87
|
- googlebooksclient.gemspec
|
|
87
88
|
- lib/googlebooksclient.rb
|
|
88
89
|
- lib/googlebooksclient/client.rb
|
|
@@ -111,5 +112,5 @@ rubyforge_project:
|
|
|
111
112
|
rubygems_version: 2.7.8
|
|
112
113
|
signing_key:
|
|
113
114
|
specification_version: 4
|
|
114
|
-
summary:
|
|
115
|
+
summary: This is my first gem that I wrote as a simple Google Books API Client.
|
|
115
116
|
test_files: []
|