google-apis-blogger_v3 0.20.0 → 0.21.0
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/CHANGELOG.md +4 -0
- data/OVERVIEW.md +3 -3
- data/lib/google/apis/blogger_v3/gem_version.rb +2 -2
- data/lib/google/apis/blogger_v3/service.rb +1 -1
- data/lib/google/apis/blogger_v3.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d65aa00bc837a8abb122de3fae349fa0072092ac84f5e73e698487aced2ad50a
|
|
4
|
+
data.tar.gz: eebe21c89d06fd0243c5e15a4c4f7fd9cb576724e787d14fa97128f08b64acf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 921d944182669ee4a1a8735197b848fa21ce9275fd957a485b32ef5ca7da6d740975866c06af2d9200beb1f55556b82955eb9fd2cd870c3ca82b702bf7a93dca
|
|
7
|
+
data.tar.gz: 78f188556a2d47ffbcec0a7ae88bf35584143430359937ee05c5629f9c5ae22c59176419b86ebfa97423ae944be453c5083591ad9650fa0dcfe2a92a19b35fe7
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# Simple REST client for version V3 of the
|
|
1
|
+
# Simple REST client for version V3 of the blogger API
|
|
2
2
|
|
|
3
|
-
This is a simple client library for version V3 of the
|
|
3
|
+
This is a simple client library for version V3 of the blogger API. It provides:
|
|
4
4
|
|
|
5
5
|
* A client object that connects to the HTTP/JSON REST endpoint for the service.
|
|
6
6
|
* Ruby objects for data structures related to the service.
|
|
@@ -65,7 +65,7 @@ More detailed descriptions of the Google simple REST clients are available in tw
|
|
|
65
65
|
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Blogger service in particular.)
|
|
67
67
|
|
|
68
|
-
For reference information on specific calls in the
|
|
68
|
+
For reference information on specific calls in the blogger API, see the {Google::Apis::BloggerV3::BloggerService class reference docs}.
|
|
69
69
|
|
|
70
70
|
## Which client should I use?
|
|
71
71
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BloggerV3
|
|
18
18
|
# Version of the google-apis-blogger_v3 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.21.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260521"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -19,13 +19,13 @@ require 'google/apis/blogger_v3/gem_version.rb'
|
|
|
19
19
|
|
|
20
20
|
module Google
|
|
21
21
|
module Apis
|
|
22
|
-
#
|
|
22
|
+
# blogger API
|
|
23
23
|
#
|
|
24
24
|
# The Blogger API provides access to posts, comments and pages of a Blogger blog.
|
|
25
25
|
#
|
|
26
26
|
# @see https://developers.google.com/blogger/docs/3.0/getting_started
|
|
27
27
|
module BloggerV3
|
|
28
|
-
# Version of the
|
|
28
|
+
# Version of the blogger API this client connects to.
|
|
29
29
|
# This is NOT the gem version.
|
|
30
30
|
VERSION = 'V3'
|
|
31
31
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-blogger_v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.21.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -29,12 +29,12 @@ dependencies:
|
|
|
29
29
|
- - "<"
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
31
|
version: 2.a
|
|
32
|
-
description: This is the simple REST client for
|
|
32
|
+
description: This is the simple REST client for blogger API V3. Simple REST clients
|
|
33
33
|
are Ruby client libraries that provide access to Google services via their HTTP
|
|
34
34
|
REST API endpoints. These libraries are generated and updated automatically based
|
|
35
35
|
on the discovery documents published by the service, and they handle most concerns
|
|
36
36
|
such as authentication, pagination, retry, timeouts, and logging. You can use this
|
|
37
|
-
client to access the
|
|
37
|
+
client to access the blogger API, but note that some services may provide a separate
|
|
38
38
|
modern client that is easier to use.
|
|
39
39
|
email: googleapis-packages@google.com
|
|
40
40
|
executables: []
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-blogger_v3/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-blogger_v3/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-blogger_v3/v0.21.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-blogger_v3
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -75,5 +75,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
requirements: []
|
|
76
76
|
rubygems_version: 3.6.9
|
|
77
77
|
specification_version: 4
|
|
78
|
-
summary: Simple REST client for
|
|
78
|
+
summary: Simple REST client for blogger API V3
|
|
79
79
|
test_files: []
|