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 +4 -4
- data/.commitlintrc.yml +16 -0
- data/.husky/commit-msg +1 -0
- data/.markdownlint.yml +25 -0
- data/.release-please-manifest.json +3 -0
- data/.rubocop.yml +5 -34
- data/.yardopts +8 -0
- data/CHANGELOG.md +33 -0
- data/LICENSE.txt +1 -1
- data/README.md +68 -9
- data/Rakefile +9 -10
- data/lib/discovery_v1/validation/load_schemas.rb +1 -0
- data/lib/discovery_v1/version.rb +1 -1
- data/package.json +11 -0
- data/release-please-config.json +22 -0
- metadata +52 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 580ae6ef082efe59cdb62d74cc0b01d31a44aa2ca1834de0d969abef72739ae5
|
4
|
+
data.tar.gz: ed14f37e2f76cdb7e68b9d6e22b763f1bef520962c19559e344dc20a595e6c3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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
|
-
|
3
|
-
#
|
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
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
data/README.md
CHANGED
@@ -3,24 +3,38 @@
|
|
3
3
|
[](https://badge.fury.io/rb/discovery_v1)
|
4
4
|
[](https://rubydoc.info/gems/discovery_v1/)
|
5
5
|
[](https://rubydoc.info/gems/discovery_v1/file/CHANGELOG.md)
|
6
|
-
[](https://github.com/main-branch/discovery_v1/actions/workflows/continuous_integration.yml)
|
7
|
+
[](https://conventionalcommits.org)
|
9
|
+
[](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
|
-
|
16
|
-
|
17
|
-
|
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
|
-
|
20
|
-
|
21
|
-
|
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
|
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
|
-
|
60
|
+
# YARD
|
62
61
|
|
63
62
|
unless RUBY_PLATFORM == 'java'
|
64
63
|
# yard:build
|
data/lib/discovery_v1/version.rb
CHANGED
data/package.json
ADDED
@@ -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
|
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:
|
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
|
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
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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
|
-
|
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.
|
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: []
|