discovery_v1 0.1.0 → 0.2.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: 137199efc3b5f475875b508cf68d20c51ea82f2d29d3d70d2218866f67d765a0
4
- data.tar.gz: 709788ca0001c121c94d5f95dfae6b794be0fa68f1c926e874c73a2e1aa028e1
3
+ metadata.gz: 580ae6ef082efe59cdb62d74cc0b01d31a44aa2ca1834de0d969abef72739ae5
4
+ data.tar.gz: ed14f37e2f76cdb7e68b9d6e22b763f1bef520962c19559e344dc20a595e6c3b
5
5
  SHA512:
6
- metadata.gz: 42b2fa6f84a491d7366d11539a50ae71e059526ce6d9f883e6f40027c1f61efb3c17e4bf05137e6827b8829a7f3aa309700b22bdb9ba116f0f85eee5dc3e0214
7
- data.tar.gz: 1f2e89c1dd89c67c22a1ff16ecf7c2f0ec03ff16e68d16292840b6b4d9bef0ef1db97fde783aabcf9411456072247cbffa10872feb4ef8ee57321a3f1c11a77f
6
+ metadata.gz: d425ff4759c7edda63bdd5acecb81a0bad120616ae34207228f2a554e22e1369f6c445db789f4084cc84cba6cb532756e3299001d173fb4a11458b57186d9030
7
+ data.tar.gz: e37603f2a16872e69d559d712dd49facb3f86e1122f3bfa86ed11421c1041e0f0f8f93d7c7700080071427fb03627c40535c98b6383626b86d421a4518a28989
data/.commitlintrc.yml ADDED
@@ -0,0 +1,16 @@
1
+ ---
2
+ extends: '@commitlint/config-conventional'
3
+
4
+ rules:
5
+ # See: https://commitlint.js.org/reference/rules.html
6
+ #
7
+ # Rules are made up by a name and a configuration array. The configuration array contains:
8
+ #
9
+ # * Severity [0..2]: 0 disable rule, 1 warning if violated, or 2 error if violated
10
+ # * Applicability [always|never]: never inverts the rule
11
+ # * Value: value to use for this rule
12
+ #
13
+ # Run `npx commitlint --print-config` to see the current setting for all rules.
14
+ #
15
+ body-leading-blank: [2, 'always']
16
+ footer-leading-blank: [2, 'always']
data/.husky/commit-msg ADDED
@@ -0,0 +1 @@
1
+ npx --no-install commitlint --edit "$1"
data/.markdownlint.yml ADDED
@@ -0,0 +1,25 @@
1
+ default: true
2
+
3
+ # Unordered list indentation
4
+ MD007: { indent: 2 }
5
+
6
+ # Line length
7
+ MD013: { line_length: 90, tables: false, code_blocks: false }
8
+
9
+ # Heading duplication is allowed for non-sibling headings
10
+ MD024: { siblings_only: true }
11
+
12
+ # Do not allow the specified trailing punctuation in a header
13
+ MD026: { punctuation: '.,;:' }
14
+
15
+ # Order list items must have a prefix that increases in numerical order
16
+ MD029: { style: 'ordered' }
17
+
18
+ # Lists do not need to be surrounded by blank lines
19
+ MD032: false
20
+
21
+ # Allow raw HTML in Markdown
22
+ MD033: false
23
+
24
+ # Allow emphasis to be used instead of a heading
25
+ MD036: false
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.2.1"
3
+ }
data/.rubocop.yml CHANGED
@@ -1,36 +1,7 @@
1
+ inherit_gem:
2
+ main_branch_shared_rubocop_config: config/rubocop.yml
3
+
1
4
  AllCops:
2
- NewCops: enable
3
- # Output extra information for each offense to make it easier to diagnose:
4
- DisplayCopNames: true
5
- DisplayStyleGuide: true
6
- ExtraDetails: true
7
- SuggestExtensions: false
8
- # RuboCop enforces rules depending on the oldest version of Ruby which
9
- # your project supports:
5
+ # Pin this project to Ruby 3.1 in case the shared config above is upgraded to 3.2
6
+ # or later.
10
7
  TargetRubyVersion: 3.1
11
-
12
- Gemspec/DevelopmentDependencies:
13
- EnforcedStyle: gemspec
14
-
15
- # The default max line length is 80 characters
16
- Layout/LineLength:
17
- Max: 120
18
-
19
- # The DSL for RSpec and the gemspec file make it very hard to limit block length:
20
- Metrics/BlockLength:
21
- Exclude:
22
- - "spec/spec_helper.rb"
23
- - "spec/**/*_spec.rb"
24
- - "*.gemspec"
25
-
26
- Metrics/ModuleLength:
27
- CountAsOne: ['hash']
28
-
29
- # When writing minitest tests, it is very hard to limit test class length:
30
- Metrics/ClassLength:
31
- CountAsOne: ['hash']
32
- Exclude:
33
- - "test/**/*_test.rb"
34
-
35
- Style/AsciiComments:
36
- Enabled: false
data/.yardopts ADDED
@@ -0,0 +1,8 @@
1
+ --no-private
2
+ --hide-void-return
3
+ --markup-provider=redcarpet
4
+ --markup markdown
5
+ - CHANGELOG.md
6
+ - CONTRIBUTING.md
7
+ - RELEASING.md
8
+ - LICENSE.txt
data/CHANGELOG.md CHANGED
@@ -4,6 +4,39 @@ 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.1](https://github.com/main-branch/discovery_v1/compare/v0.2.0...v0.2.1) (2025-04-16)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * Automate commit-to-publish workflow ([ca3af76](https://github.com/main-branch/discovery_v1/commit/ca3af7699bc78d3631b3c949eed5c828cd9f3db8))
13
+ * Make REF_KEY a private constant in LoadSchemas ([33bfef2](https://github.com/main-branch/discovery_v1/commit/33bfef26b5e88661a1c21984dbeb91ac1b319962))
14
+
15
+ ## v0.2.0 (2024-10-11)
16
+
17
+ [Full Changelog](https://github.com/main-branch/discovery_v1/compare/v0.1.0..v0.2.0)
18
+
19
+ Changes since v0.1.0:
20
+
21
+ * fbd2c75 build: remove semver pr label check
22
+ * 9234cb0 build: enforce conventional commit message formatting
23
+ * 70c72f9 Use shared Rubocop config (#16)
24
+ * 101cb6c Update copyright notice in this project (#15)
25
+ * 32986c4 Update links in gemspec (#14)
26
+ * ee4305f Add Slack badge for this project in README (#13)
27
+ * 1e05724 Use standard badges at the top of the README (#12)
28
+ * 02ec62a Update yardopts with new standard options (#11)
29
+ * 8b65f81 Standardize YARD and Markdown Lint configurations (#10)
30
+ * d105374 Update CODEOWNERS file (#9)
31
+ * 870934e Set JRuby --debug option when running tests in GitHub Actions workflows (#8)
32
+ * 351659c Integrate simplecov-rspec into the project (#7)
33
+ * 3ca83ee Update continuous integration and experimental ruby builds (#6)
34
+ * cb454b8 Enforce the use of semver tags on PRs (#5)
35
+ * 68d0136 Auto correct rubocop Gemspec/AddRuntimeDependency offense (#4)
36
+ * 5c4115a Add links to other gems in the Google API helpers series (#3)
37
+ * 2aa6534 Merge pull request #2 from main-branch/document_extensions
38
+ * 92d158c Document extensions to Google::Apis::DiscoveryV1 classes
39
+
7
40
  ## v0.1.0 (2023-11-21)
8
41
 
9
42
  [Full Changelog](https://github.com/main-branch/discovery_v1/compare/6e9fb12..v0.1.0)
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2023 James Couball
3
+ Copyright (c) 2024 James Couball
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -3,24 +3,38 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/discovery_v1.svg)](https://badge.fury.io/rb/discovery_v1)
4
4
  [![Documentation](https://img.shields.io/badge/Documentation-Latest-green)](https://rubydoc.info/gems/discovery_v1/)
5
5
  [![Change Log](https://img.shields.io/badge/CHANGELOG-Latest-green)](https://rubydoc.info/gems/discovery_v1/file/CHANGELOG.md)
6
- [![Build Status](https://github.com/main-branch/discovery_v1/workflows/CI%20Build/badge.svg?branch=main)](https://github.com/main-branch/discovery_v1/actions?query=workflow%3ACI%20Build)
7
- [![Maintainability](https://api.codeclimate.com/v1/badges/aeebc016487c5cad881e/maintainability)](https://codeclimate.com/github/main-branch/discovery_v1/maintainability)
8
- [![Test Coverage](https://api.codeclimate.com/v1/badges/aeebc016487c5cad881e/test_coverage)](https://codeclimate.com/github/main-branch/discovery_v1/test_coverage)
6
+ [![Build Status](https://github.com/main-branch/discovery_v1/actions/workflows/continuous_integration.yml/badge.svg)](https://github.com/main-branch/discovery_v1/actions/workflows/continuous_integration.yml)
7
+ [![Conventional
8
+ Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)
9
+ [![Slack](https://img.shields.io/badge/slack-main--branch/discovery__v1-yellow.svg?logo=slack)](https://main-branch.slack.com/archives/C07MT5MG7V1)
9
10
 
10
11
  Unofficial helpers and extensions for the Google Discovery V1 API
11
12
 
13
+ Gems in the Google API helper, extensions, and examples series:
14
+
15
+ * [discovery_v1](https://github.com/main-branch/discovery_v1)
16
+ * [drive_v3](https://github.com/main-branch/drive_v3)
17
+ * [sheets_v4](https://github.com/main-branch/sheets_v4)
18
+
19
+ ## Contents
20
+
21
+ * [Contents](#contents)
12
22
  * [Installation](#installation)
13
23
  * [Examples](#examples)
14
24
  * [Important links](#important-links)
15
- * [DiscoveryV1 documenation](#discoveryv1-documenation)
16
- * [General API documentation](#general-api-documentation)
17
- * [Ruby implementation of the Discovery API](#ruby-implementation-of-the-discovery-api)
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)
18
28
  * [Usage](#usage)
19
- * [Obtaining a DiscoveryService](#obtaining-a-discoveryservice)
20
- * [Downloading an API discovery document](#downloading-an-api-discovery-document)
21
- * [Validating API objects](#validating-api-objects)
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)
22
34
  * [Development](#development)
23
35
  * [Contributing](#contributing)
36
+ * [Commit message guidelines](#commit-message-guidelines)
37
+ * [Pull request guidelines](#pull-request-guidelines)
24
38
  * [License](#license)
25
39
  * [Code of Conduct](#code-of-conduct)
26
40
 
@@ -159,6 +173,26 @@ will raise a RuntimeError noting where the object structure did not conform to
159
173
  the schema. `RuntimeError#message` will give details about where the structure did
160
174
  not conform.
161
175
 
176
+ ### Google Extensions
177
+
178
+ The `DiscoveryV1::GoogleExtensions` module provides extensions to the `Google::Apis::DiscoveryV1`
179
+ modules and classes to simplify use of the SheetsV4 API.
180
+
181
+ These extensions are not loaded by default and are not required to use other parts
182
+ of this Gem. To enable these extension, you must:
183
+
184
+ ```Ruby
185
+ require 'discovery_v1/google_extensions'
186
+ ```
187
+
188
+ #### RestDescription Extensions
189
+
190
+ Convenience methods are been added to `Google::Apis::DiscoveryV1::RestDescription`:
191
+ * [RestDescription#object_schema_names](https://rubydoc.info/gems/discovery_v1/Google/Apis/DiscoveryV1/RestDescription#object_schema_names-instance_method):
192
+ The names of the schemas defined by this `RestDescription`.
193
+ * [RestDescription#validate_object](https://rubydoc.info/gems/discovery_v1/Google/Apis/DiscoveryV1/RestDescription#validate_object-instance_method):
194
+ Raises an error if the given object does not conform to the named schema.
195
+
162
196
  ## Development
163
197
 
164
198
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -169,6 +203,31 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
169
203
 
170
204
  Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/discovery_v1. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/discovery_v1/blob/main/CODE_OF_CONDUCT.md).
171
205
 
206
+ ### Commit message guidelines
207
+
208
+ All commit messages must follow the [Conventional Commits
209
+ standard](https://www.conventionalcommits.org/en/v1.0.0/). This helps us maintain a
210
+ clear and structured commit history, automate versioning, and generate changelogs
211
+ effectively.
212
+
213
+ To ensure compliance, this project includes:
214
+
215
+ * A git commit-msg hook that validates your commit messages before they are accepted.
216
+
217
+ To activate the hook, you must have node installed and run `npm install`.
218
+
219
+ * A GitHub Actions workflow that will enforce the Conventional Commit standard as
220
+ part of the continuous integration pipeline.
221
+
222
+ Any commit message that does not conform to the Conventional Commits standard will
223
+ cause the workflow to fail and not allow the PR to be merged.
224
+
225
+ ### Pull request guidelines
226
+
227
+ All pull requests must be merged using rebase merges. This ensures that commit
228
+ messages from the feature branch are preserved in the release branch, keeping the
229
+ history clean and meaningful.
230
+
172
231
  ## License
173
232
 
174
233
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
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
 
@@ -48,17 +55,9 @@ CLEAN << 'rspec-report.xml'
48
55
 
49
56
  require 'rubocop/rake_task'
50
57
 
51
- RuboCop::RakeTask.new do |t|
52
- t.options = %w[
53
- --display-cop-names
54
- --display-style-guide
55
- --extra-details
56
- --format progress
57
- --format json --out rubocop-report.json
58
- ]
59
- end
58
+ RuboCop::RakeTask.new
60
59
 
61
- CLEAN << 'rubocop-report.json'
60
+ # YARD
62
61
 
63
62
  unless RUBY_PLATFORM == 'java'
64
63
  # yard:build
@@ -163,6 +163,7 @@ module DiscoveryV1
163
163
  end
164
164
 
165
165
  REF_KEY = '$ref'
166
+ private_constant :REF_KEY
166
167
 
167
168
  # A visitor for the schema object tree that fixes up the tree as it goes
168
169
  # @return [void]
@@ -2,5 +2,5 @@
2
2
 
3
3
  module DiscoveryV1
4
4
  # The version of this gem
5
- VERSION = '0.1.0'
5
+ VERSION = '0.2.1'
6
6
  end
data/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "devDependencies": {
3
+ "@commitlint/cli": "^19.5.0",
4
+ "@commitlint/config-conventional": "^19.5.0",
5
+ "husky": "^9.1.0"
6
+ },
7
+ "scripts": {
8
+ "postinstall": "husky",
9
+ "prepare": "husky"
10
+ }
11
+ }
@@ -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.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2023-11-21 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler-audit
@@ -30,56 +29,70 @@ dependencies:
30
29
  requirements:
31
30
  - - "~>"
32
31
  - !ruby/object:Gem::Version
33
- version: '1.0'
32
+ version: '2.1'
34
33
  type: :development
35
34
  prerelease: false
36
35
  version_requirements: !ruby/object:Gem::Requirement
37
36
  requirements:
38
37
  - - "~>"
39
38
  - !ruby/object:Gem::Version
40
- version: '1.0'
39
+ version: '2.1'
40
+ - !ruby/object:Gem::Dependency
41
+ name: main_branch_shared_rubocop_config
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '0.1'
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '0.1'
41
54
  - !ruby/object:Gem::Dependency
42
55
  name: rake
43
56
  requirement: !ruby/object:Gem::Requirement
44
57
  requirements:
45
58
  - - "~>"
46
59
  - !ruby/object:Gem::Version
47
- version: '13.0'
60
+ version: '13.2'
48
61
  type: :development
49
62
  prerelease: false
50
63
  version_requirements: !ruby/object:Gem::Requirement
51
64
  requirements:
52
65
  - - "~>"
53
66
  - !ruby/object:Gem::Version
54
- version: '13.0'
67
+ version: '13.2'
55
68
  - !ruby/object:Gem::Dependency
56
69
  name: rspec
57
70
  requirement: !ruby/object:Gem::Requirement
58
71
  requirements:
59
72
  - - "~>"
60
73
  - !ruby/object:Gem::Version
61
- version: '3.12'
74
+ version: '3.13'
62
75
  type: :development
63
76
  prerelease: false
64
77
  version_requirements: !ruby/object:Gem::Requirement
65
78
  requirements:
66
79
  - - "~>"
67
80
  - !ruby/object:Gem::Version
68
- version: '3.12'
81
+ version: '3.13'
69
82
  - !ruby/object:Gem::Dependency
70
83
  name: rubocop
71
84
  requirement: !ruby/object:Gem::Requirement
72
85
  requirements:
73
86
  - - "~>"
74
87
  - !ruby/object:Gem::Version
75
- version: '1.57'
88
+ version: '1.66'
76
89
  type: :development
77
90
  prerelease: false
78
91
  version_requirements: !ruby/object:Gem::Requirement
79
92
  requirements:
80
93
  - - "~>"
81
94
  - !ruby/object:Gem::Version
82
- version: '1.57'
95
+ version: '1.66'
83
96
  - !ruby/object:Gem::Dependency
84
97
  name: simplecov
85
98
  requirement: !ruby/object:Gem::Requirement
@@ -108,6 +121,20 @@ dependencies:
108
121
  - - "~>"
109
122
  - !ruby/object:Gem::Version
110
123
  version: '0.8'
124
+ - !ruby/object:Gem::Dependency
125
+ name: simplecov-rspec
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '0.3'
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '0.3'
111
138
  - !ruby/object:Gem::Dependency
112
139
  name: redcarpet
113
140
  requirement: !ruby/object:Gem::Requirement
@@ -190,28 +217,28 @@ dependencies:
190
217
  requirements:
191
218
  - - "~>"
192
219
  - !ruby/object:Gem::Version
193
- version: '0.14'
220
+ version: '0.19'
194
221
  type: :runtime
195
222
  prerelease: false
196
223
  version_requirements: !ruby/object:Gem::Requirement
197
224
  requirements:
198
225
  - - "~>"
199
226
  - !ruby/object:Gem::Version
200
- version: '0.14'
227
+ version: '0.19'
201
228
  - !ruby/object:Gem::Dependency
202
229
  name: json_schemer
203
230
  requirement: !ruby/object:Gem::Requirement
204
231
  requirements:
205
232
  - - "~>"
206
233
  - !ruby/object:Gem::Version
207
- version: '2.0'
234
+ version: '2.3'
208
235
  type: :runtime
209
236
  prerelease: false
210
237
  version_requirements: !ruby/object:Gem::Requirement
211
238
  requirements:
212
239
  - - "~>"
213
240
  - !ruby/object:Gem::Version
214
- version: '2.0'
241
+ version: '2.3'
215
242
  description: Unofficial helpers and extensions for the Google Discovery V1 API
216
243
  email:
217
244
  - jcouball@yahoo.com
@@ -219,8 +246,13 @@ executables: []
219
246
  extensions: []
220
247
  extra_rdoc_files: []
221
248
  files:
249
+ - ".commitlintrc.yml"
250
+ - ".husky/commit-msg"
251
+ - ".markdownlint.yml"
252
+ - ".release-please-manifest.json"
222
253
  - ".rspec"
223
254
  - ".rubocop.yml"
255
+ - ".yardopts"
224
256
  - CHANGELOG.md
225
257
  - CODE_OF_CONDUCT.md
226
258
  - LICENSE.txt
@@ -237,6 +269,8 @@ files:
237
269
  - lib/discovery_v1/validation/traverse_object_tree.rb
238
270
  - lib/discovery_v1/validation/validate_object.rb
239
271
  - lib/discovery_v1/version.rb
272
+ - package.json
273
+ - release-please-config.json
240
274
  - sig/discovery_v1.rbs
241
275
  homepage: https://github.com/main-branch/discovery_v1
242
276
  licenses:
@@ -245,9 +279,9 @@ metadata:
245
279
  allowed_push_host: https://rubygems.org
246
280
  homepage_uri: https://github.com/main-branch/discovery_v1
247
281
  source_code_uri: https://github.com/main-branch/discovery_v1
248
- changelog_uri: https://rubydoc.info/gems/discovery_v1/file/CHANGELOG.md
282
+ documentation_uri: https://rubydoc.info/gems/discovery_v1/0.2.1
283
+ changelog_uri: https://rubydoc.info/gems/discovery_v1/0.2.1/file/CHANGELOG.md
249
284
  rubygems_mfa_required: 'true'
250
- post_install_message:
251
285
  rdoc_options: []
252
286
  require_paths:
253
287
  - lib
@@ -262,8 +296,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
262
296
  - !ruby/object:Gem::Version
263
297
  version: '0'
264
298
  requirements: []
265
- rubygems_version: 3.4.14
266
- signing_key:
299
+ rubygems_version: 3.6.7
267
300
  specification_version: 4
268
301
  summary: Unofficial helpers and extensions for the Google Discovery V1 API
269
302
  test_files: []