google_books_client 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2bac51ecfda0f49e570394dd7357d508816e9d5ba8c63c0b562000aadfd8088e
4
- data.tar.gz: 5ddd793c514d0e133d6c1ff8330443e046490f74a4e3e44ce1a8f898edb0211c
3
+ metadata.gz: fac65fa49266f1199d7d6c3cdcd2d26dd715446566f6b25f6f98b9bfdfbe9e1c
4
+ data.tar.gz: 1be189fb2777f4b5c94c12c798186ecd3d20024d4bb8fbad04825ff44145a2b8
5
5
  SHA512:
6
- metadata.gz: 63aae522ffe2e99baf76ffb159adfcc6fb8cb552e38ea603eba9780873a393bc0dde04d345867ec568d31e0b94bae627cfc649f13cbbcc6929a0c419c060645d
7
- data.tar.gz: 023bc6b3e62c79a3ac05a381979141b6db11dbbf936051364caf14631edbf6636b334c7ac76cf0f51551b44155eb68d8f2d510e3b7d8b0412c6b3a1dfe47c82d
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.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
15
+ spec.author = "Beto Sardinha"
16
+ spec.email = "sardinhabeto55@gmail.com"
17
17
 
18
18
  spec.metadata["homepage_uri"] = spec.homepage
19
- spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
20
- spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
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.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module GoogleBooksClient
4
4
  NAME = "google_books_client"
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
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.0
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
- email:
103
- - sardinhabeto55@gmail.com
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
- - google-books-client.gemspec
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