google_books_client 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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fac65fa49266f1199d7d6c3cdcd2d26dd715446566f6b25f6f98b9bfdfbe9e1c
|
|
4
|
+
data.tar.gz: 1be189fb2777f4b5c94c12c798186ecd3d20024d4bb8fbad04825ff44145a2b8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2203ee1ea8b83fe0dc67460242aae406dc044d42f553e6754712b4df6a398817d2d960c03b91353cf88525dc5666085b24c2d1af120009074336a8961868c149
|
|
7
|
+
data.tar.gz: 5ae6847bd2d9e50e2986919634d19430d4a961a2117ce98a56c42706ebed049c811578f93406a8c42e214487197ece186b490e1e58d3136e2cf943eb661c6948
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
- Add support to models:
|
|
8
8
|
- Volume.
|
|
9
|
-
- SubscriptionConfig.
|
|
10
9
|
- Add support to resources:
|
|
11
10
|
- Volumes.
|
|
11
|
+
|
|
12
|
+
## [v0.1.1](https://github.com/betosardinha/google_books_client/releases/tag/v0.1.1) (2023-12-29)
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
- Fix gemspec links
|
|
@@ -5,19 +5,21 @@ require_relative "lib/google_books_client/version"
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = GoogleBooksClient::NAME
|
|
7
7
|
spec.version = GoogleBooksClient::VERSION
|
|
8
|
-
spec.authors = ["Beto Sardinha"]
|
|
9
|
-
spec.email = ["sardinhabeto55@gmail.com"]
|
|
10
|
-
|
|
11
8
|
spec.summary = "A simple client for Google Books API."
|
|
9
|
+
spec.description = "A simple client for Google Books API. Provides a interface for searching and serializing volumes."
|
|
10
|
+
|
|
12
11
|
spec.homepage = "https://github.com/betosardinha/google_books_client"
|
|
13
|
-
spec.license = "MIT"
|
|
14
12
|
spec.required_ruby_version = ">= 2.6.0"
|
|
13
|
+
spec.license = "MIT"
|
|
15
14
|
|
|
16
|
-
spec.
|
|
15
|
+
spec.author = "Beto Sardinha"
|
|
16
|
+
spec.email = "sardinhabeto55@gmail.com"
|
|
17
17
|
|
|
18
18
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
19
|
-
spec.metadata["
|
|
20
|
-
spec.metadata["
|
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/betosardinha/google_books_client/blob/main/CHANGELOG.md"
|
|
20
|
+
spec.metadata["documentation_uri"] = "https://github.com/betosardinha/google_books_client/blob/main/README.md"
|
|
21
|
+
spec.metadata["source_code_uri"] = "https://github.com/betosardinha/google_books_client/tree/v#{GoogleBooksClient::VERSION}"
|
|
22
|
+
spec.metadata["bug_tracker_uri"] = "https://github.com/betosardinha/google_books_client/issues"
|
|
21
23
|
|
|
22
24
|
# Specify which files should be added to the gem when it is released.
|
|
23
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_books_client
|
|
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
|
- Beto Sardinha
|
|
@@ -98,9 +98,9 @@ dependencies:
|
|
|
98
98
|
- - "~>"
|
|
99
99
|
- !ruby/object:Gem::Version
|
|
100
100
|
version: '13.0'
|
|
101
|
-
description:
|
|
102
|
-
|
|
103
|
-
|
|
101
|
+
description: A simple client for Google Books API. Provides a interface for searching
|
|
102
|
+
and serializing volumes.
|
|
103
|
+
email: sardinhabeto55@gmail.com
|
|
104
104
|
executables: []
|
|
105
105
|
extensions: []
|
|
106
106
|
extra_rdoc_files: []
|
|
@@ -116,7 +116,7 @@ files:
|
|
|
116
116
|
- Rakefile
|
|
117
117
|
- doc/resources.md
|
|
118
118
|
- docker-compose.yml
|
|
119
|
-
-
|
|
119
|
+
- google_books_client.gemspec
|
|
120
120
|
- lib/google_books_client.rb
|
|
121
121
|
- lib/google_books_client/configuration.rb
|
|
122
122
|
- lib/google_books_client/http_client_adapter.rb
|