discovery_v1 0.2.0 → 0.2.2
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/.release-please-manifest.json +3 -0
- data/CHANGELOG.md +15 -0
- data/README.md +10 -12
- data/Rakefile +7 -0
- data/lib/discovery_v1/validation/load_schemas.rb +1 -0
- data/lib/discovery_v1/version.rb +1 -1
- data/release-please-config.json +22 -0
- metadata +7 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 904259a7c775647df317a7fa705d23ba7fe56aea01982bd91bb12777852ab563
|
4
|
+
data.tar.gz: e896b2c1ba0a719f6949fbe63af1c29c12e4d36196196a690970be4813559987
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dcbcbd2c2c16e990a7594e03125374827e945495a78d513d0b9e244e623ee5190c11870d338846a8c553222472e6267b1de1e09c2af18d8a45cba95e74396f8a
|
7
|
+
data.tar.gz: f529369d36ae92a25ced08216969df096c3f0007e1ce41e4dd67038cfb6067d42abfae83371c7df2da1cb3c71a7a04bda49f49169596dca3b45ecf385d879d42
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,21 @@ Changes for each release are listed in this file.
|
|
4
4
|
|
5
5
|
This project adheres to [Semantic Versioning](https://semver.org/) for its releases.
|
6
6
|
|
7
|
+
## [0.2.2](https://github.com/main-branch/discovery_v1/compare/v0.2.1...v0.2.2) (2025-04-17)
|
8
|
+
|
9
|
+
|
10
|
+
### Bug Fixes
|
11
|
+
|
12
|
+
* Do not trigger build workflows after merging to main or for release PRs ([edd8005](https://github.com/main-branch/discovery_v1/commit/edd80050002dc3ce678c3e529d0a6ea8509334f4))
|
13
|
+
|
14
|
+
## [0.2.1](https://github.com/main-branch/discovery_v1/compare/v0.2.0...v0.2.1) (2025-04-16)
|
15
|
+
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
|
19
|
+
* Automate commit-to-publish workflow ([ca3af76](https://github.com/main-branch/discovery_v1/commit/ca3af7699bc78d3631b3c949eed5c828cd9f3db8))
|
20
|
+
* Make REF_KEY a private constant in LoadSchemas ([33bfef2](https://github.com/main-branch/discovery_v1/commit/33bfef26b5e88661a1c21984dbeb91ac1b319962))
|
21
|
+
|
7
22
|
## v0.2.0 (2024-10-11)
|
8
23
|
|
9
24
|
[Full Changelog](https://github.com/main-branch/discovery_v1/compare/v0.1.0..v0.2.0)
|
data/README.md
CHANGED
@@ -4,8 +4,6 @@
|
|
4
4
|
[](https://rubydoc.info/gems/discovery_v1/)
|
5
5
|
[](https://rubydoc.info/gems/discovery_v1/file/CHANGELOG.md)
|
6
6
|
[](https://github.com/main-branch/discovery_v1/actions/workflows/continuous_integration.yml)
|
7
|
-
[](https://codeclimate.com/github/main-branch/discovery_v1/maintainability)
|
8
|
-
[](https://codeclimate.com/github/main-branch/discovery_v1/test_coverage)
|
9
7
|
[](https://conventionalcommits.org)
|
11
9
|
[](https://main-branch.slack.com/archives/C07MT5MG7V1)
|
@@ -24,19 +22,19 @@ Gems in the Google API helper, extensions, and examples series:
|
|
24
22
|
* [Installation](#installation)
|
25
23
|
* [Examples](#examples)
|
26
24
|
* [Important links](#important-links)
|
27
|
-
|
28
|
-
|
29
|
-
|
25
|
+
* [DiscoveryV1 documenation](#discoveryv1-documenation)
|
26
|
+
* [General API documentation](#general-api-documentation)
|
27
|
+
* [Ruby implementation of the Discovery API](#ruby-implementation-of-the-discovery-api)
|
30
28
|
* [Usage](#usage)
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
29
|
+
* [Obtaining a DiscoveryService](#obtaining-a-discoveryservice)
|
30
|
+
* [Downloading an API discovery document](#downloading-an-api-discovery-document)
|
31
|
+
* [Validating API objects](#validating-api-objects)
|
32
|
+
* [Google Extensions](#google-extensions)
|
33
|
+
* [RestDescription Extensions](#restdescription-extensions)
|
36
34
|
* [Development](#development)
|
37
35
|
* [Contributing](#contributing)
|
38
|
-
|
39
|
-
|
36
|
+
* [Commit message guidelines](#commit-message-guidelines)
|
37
|
+
* [Pull request guidelines](#pull-request-guidelines)
|
40
38
|
* [License](#license)
|
41
39
|
* [Code of Conduct](#code-of-conduct)
|
42
40
|
|
data/Rakefile
CHANGED
@@ -25,6 +25,13 @@ rescue Bundler::BundlerError => e
|
|
25
25
|
exit e.status_code
|
26
26
|
end
|
27
27
|
|
28
|
+
# Make it so that calling `rake release` just calls `rake release:rubygems_push` to
|
29
|
+
# avoid creating and pushing a new tag.
|
30
|
+
|
31
|
+
Rake::Task['release'].clear
|
32
|
+
desc 'Customized release task to avoid creating a new tag'
|
33
|
+
task release: 'release:rubygem_push'
|
34
|
+
|
28
35
|
CLEAN << 'pkg'
|
29
36
|
CLEAN << 'Gemfile.lock'
|
30
37
|
|
data/lib/discovery_v1/version.rb
CHANGED
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"bootstrap-sha": "5bbdd0c98c6c2593e16f69e8d129f6f5603fce36",
|
3
|
+
"packages": {
|
4
|
+
".": {
|
5
|
+
"release-type": "ruby",
|
6
|
+
"package-name": "discovery_v1",
|
7
|
+
"changelog-path": "CHANGELOG.md",
|
8
|
+
"version-file": "lib/discovery_v1/version.rb",
|
9
|
+
"bump-minor-pre-major": true,
|
10
|
+
"bump-patch-for-minor-pre-major": true,
|
11
|
+
"draft": false,
|
12
|
+
"prerelease": false,
|
13
|
+
"include-component-in-tag": false
|
14
|
+
}
|
15
|
+
},
|
16
|
+
"plugins": [
|
17
|
+
{
|
18
|
+
"type": "sentence-case"
|
19
|
+
}
|
20
|
+
],
|
21
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
22
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: discovery_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Couball
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: bundler-audit
|
@@ -250,6 +249,7 @@ files:
|
|
250
249
|
- ".commitlintrc.yml"
|
251
250
|
- ".husky/commit-msg"
|
252
251
|
- ".markdownlint.yml"
|
252
|
+
- ".release-please-manifest.json"
|
253
253
|
- ".rspec"
|
254
254
|
- ".rubocop.yml"
|
255
255
|
- ".yardopts"
|
@@ -270,6 +270,7 @@ files:
|
|
270
270
|
- lib/discovery_v1/validation/validate_object.rb
|
271
271
|
- lib/discovery_v1/version.rb
|
272
272
|
- package.json
|
273
|
+
- release-please-config.json
|
273
274
|
- sig/discovery_v1.rbs
|
274
275
|
homepage: https://github.com/main-branch/discovery_v1
|
275
276
|
licenses:
|
@@ -278,10 +279,9 @@ metadata:
|
|
278
279
|
allowed_push_host: https://rubygems.org
|
279
280
|
homepage_uri: https://github.com/main-branch/discovery_v1
|
280
281
|
source_code_uri: https://github.com/main-branch/discovery_v1
|
281
|
-
documentation_uri: https://rubydoc.info/gems/discovery_v1/0.2.
|
282
|
-
changelog_uri: https://rubydoc.info/gems/discovery_v1/0.2.
|
282
|
+
documentation_uri: https://rubydoc.info/gems/discovery_v1/0.2.2
|
283
|
+
changelog_uri: https://rubydoc.info/gems/discovery_v1/0.2.2/file/CHANGELOG.md
|
283
284
|
rubygems_mfa_required: 'true'
|
284
|
-
post_install_message:
|
285
285
|
rdoc_options: []
|
286
286
|
require_paths:
|
287
287
|
- lib
|
@@ -296,8 +296,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
296
296
|
- !ruby/object:Gem::Version
|
297
297
|
version: '0'
|
298
298
|
requirements: []
|
299
|
-
rubygems_version: 3.
|
300
|
-
signing_key:
|
299
|
+
rubygems_version: 3.6.7
|
301
300
|
specification_version: 4
|
302
301
|
summary: Unofficial helpers and extensions for the Google Discovery V1 API
|
303
302
|
test_files: []
|