drive_v3 0.2.1 → 0.3.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/.commitlintrc.yml +16 -0
- data/.husky/commit-msg +1 -0
- data/.markdownlint.yml +1 -1
- data/.release-please-manifest.json +3 -0
- data/.rubocop.yml +5 -35
- data/.yardopts +3 -1
- data/CHANGELOG.md +36 -0
- data/LICENSE.txt +1 -1
- data/README.md +60 -22
- data/Rakefile +9 -10
- data/lib/drive_v3/version.rb +1 -1
- data/package.json +11 -0
- data/release-please-config.json +22 -0
- metadata +53 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3583f88e9d033a4d8bd637d65980ff986cfa6288f6c4c4ddbc332fdd6e13ef4
|
4
|
+
data.tar.gz: f8c3df20cbfcea764fb55950d962c7e1e3fdf8071ee443364004f0e0843d4f3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8cc8685879468f539f58b2ef59f1ba0fe30c040e4cfc6b41b0e005c5e771e699b4ec54eb829f9d90747f4080169b5a1c377ba557cda2a3a7552c26ce54f6dba
|
7
|
+
data.tar.gz: 145efffb04e0e9782006290552911ad4730f47ac8c7b28e1134b8534e2771c92542832dfec56bc59aa3d611fc5ff1d44a5f4781d53b831b9f6179a11d63acddd
|
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
CHANGED
@@ -9,7 +9,7 @@ MD013: { line_length: 90, tables: false, code_blocks: false }
|
|
9
9
|
# Heading duplication is allowed for non-sibling headings
|
10
10
|
MD024: { siblings_only: true }
|
11
11
|
|
12
|
-
# Do not allow the specified
|
12
|
+
# Do not allow the specified trailing punctuation in a header
|
13
13
|
MD026: { punctuation: '.,;:' }
|
14
14
|
|
15
15
|
# Order list items must have a prefix that increases in numerical order
|
data/.rubocop.yml
CHANGED
@@ -1,37 +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
|
37
|
-
|
data/.yardopts
CHANGED
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,42 @@ 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.3.2](https://github.com/main-branch/drive_v3/compare/v0.3.1...v0.3.2) (2025-04-17)
|
8
|
+
|
9
|
+
|
10
|
+
### Bug Fixes
|
11
|
+
|
12
|
+
* Do not trigger build workflows after merging to main or for release PRs ([c4fd435](https://github.com/main-branch/drive_v3/commit/c4fd4353eabe79480723200d6aa0b9d4ba437d70))
|
13
|
+
|
14
|
+
## [0.3.1](https://github.com/main-branch/drive_v3/compare/v0.3.0...v0.3.1) (2025-04-16)
|
15
|
+
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
|
19
|
+
* Automate commit-to-publish workflow ([9a07c66](https://github.com/main-branch/drive_v3/commit/9a07c663c0af7b80775d8b43a30357313c2733f1))
|
20
|
+
|
21
|
+
## v0.3.0 (2024-10-11)
|
22
|
+
|
23
|
+
[Full Changelog](https://github.com/main-branch/drive_v3/compare/v0.2.1..v0.3.0)
|
24
|
+
|
25
|
+
Changes since v0.2.1:
|
26
|
+
|
27
|
+
* c9aed1f build: remove semver pr label check
|
28
|
+
* eaac868 build: enforce conventional commit message formatting
|
29
|
+
* 5f44bc1 Use shared Rubocop config (#20)
|
30
|
+
* 52fb8ad Update copyright notice in this project (#19)
|
31
|
+
* c8b8973 Update links in gemspec
|
32
|
+
* be94ccb Add Slack badge for this project in README
|
33
|
+
* b17e527 Use standard badges at the top of the README
|
34
|
+
* d200a3e Update yardopts with new standard options
|
35
|
+
* 322805c Standardize YARD and Markdown Lint configurations
|
36
|
+
* 865eed7 Set JRuby --debug option when running tests in GitHub Actions workflows
|
37
|
+
* d675a2e Integrate simplecov-rspec into the project
|
38
|
+
* be896ab Update continuous integration and experimental ruby builds
|
39
|
+
* 6e5487a Enforce the use of semver tags on PRs
|
40
|
+
* 03e23b3 Auto correct rubocop Gemspec/AddRuntimeDependency offense
|
41
|
+
* 0c9230b Add links to other gems in the Google API helpers series (#8)
|
42
|
+
|
7
43
|
## v0.2.1 (2023-12-05)
|
8
44
|
|
9
45
|
[Full Changelog](https://github.com/main-branch/drive_v3/compare/v0.2.0..v0.2.1)
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -3,38 +3,50 @@
|
|
3
3
|
[](https://badge.fury.io/rb/drive_v3)
|
4
4
|
[](https://rubydoc.info/gems/drive_v3/)
|
5
5
|
[](https://rubydoc.info/gems/drive_v3/file/CHANGELOG.md)
|
6
|
-
[](https://github.com/main-branch/drive_v3/actions/workflows/continuous_integration.yml)
|
7
|
+
[](https://conventionalcommits.org)
|
9
|
+
[](https://main-branch.slack.com/archives/C07NG2J1C72)
|
9
10
|
|
10
11
|
Unofficial helpers and extensions for the Google Drive V3 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 for programming Google Drive](#important-links-for-programming-google-drive)
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
25
|
+
* [DriveV3 documenation](#drivev3-documenation)
|
26
|
+
* [General API documentation](#general-api-documentation)
|
27
|
+
* [Ruby implementation of the Drive API](#ruby-implementation-of-the-drive-api)
|
28
|
+
* [Other links](#other-links)
|
19
29
|
* [Getting started](#getting-started)
|
20
|
-
|
21
|
-
|
22
|
-
|
30
|
+
* [Create a Google Cloud project](#create-a-google-cloud-project)
|
31
|
+
* [Enable the APIs you want to use](#enable-the-apis-you-want-to-use)
|
32
|
+
* [Download a Google API credential file](#download-a-google-api-credential-file)
|
23
33
|
* [Usage](#usage)
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
34
|
+
* [Obtaining an authenticated DriveService](#obtaining-an-authenticated-driveservice)
|
35
|
+
* [Building a request](#building-a-request)
|
36
|
+
* [Method 1: constructing requests using `Google::Apis::SheetsV4::*` objects](#method-1-constructing-requests-using-googleapissheetsv4-objects)
|
37
|
+
* [Method 2: constructing requests using hashes](#method-2-constructing-requests-using-hashes)
|
38
|
+
* [Which method should be used?](#which-method-should-be-used)
|
39
|
+
* [Validating requests](#validating-requests)
|
40
|
+
* [Google Extensions](#google-extensions)
|
41
|
+
* [SheetsService Extensions](#sheetsservice-extensions)
|
42
|
+
* [Spreadsheet Extensions](#spreadsheet-extensions)
|
43
|
+
* [Sheet Extensions](#sheet-extensions)
|
44
|
+
* [Working with dates and times](#working-with-dates-and-times)
|
45
|
+
* [Working with colors](#working-with-colors)
|
36
46
|
* [Development](#development)
|
37
47
|
* [Contributing](#contributing)
|
48
|
+
* [Commit message guidelines](#commit-message-guidelines)
|
49
|
+
* [Pull request guidelines](#pull-request-guidelines)
|
38
50
|
* [License](#license)
|
39
51
|
|
40
52
|
## Installation
|
@@ -430,6 +442,32 @@ commits and the created tag, and push the `.gem` file to
|
|
430
442
|
|
431
443
|
Bug reports and pull requests are welcome on [the main-branch/drive_v3 GitHub project](https://github.com/main-branch/drive_v3).
|
432
444
|
|
445
|
+
### Commit message guidelines
|
446
|
+
|
447
|
+
All commit messages must follow the [Conventional Commits
|
448
|
+
standard](https://www.conventionalcommits.org/en/v1.0.0/). This helps us maintain a
|
449
|
+
clear and structured commit history, automate versioning, and generate changelogs
|
450
|
+
effectively.
|
451
|
+
|
452
|
+
To ensure compliance, this project includes:
|
453
|
+
|
454
|
+
* A git commit-msg hook that validates your commit messages before they are accepted.
|
455
|
+
|
456
|
+
To activate the hook, you must have node installed and run `npm install`.
|
457
|
+
|
458
|
+
* A GitHub Actions workflow that will enforce the Conventional Commit standard as
|
459
|
+
part of the continuous integration pipeline.
|
460
|
+
|
461
|
+
Any commit message that does not conform to the Conventional Commits standard will
|
462
|
+
cause the workflow to fail and not allow the PR to be merged.
|
463
|
+
|
464
|
+
### Pull request guidelines
|
465
|
+
|
466
|
+
All pull requests must be merged using rebase merges. This ensures that commit
|
467
|
+
messages from the feature branch are preserved in the release branch, keeping the
|
468
|
+
history clean and meaningful.
|
469
|
+
|
470
|
+
|
433
471
|
## License
|
434
472
|
|
435
473
|
The gem is available as open source under the terms of the
|
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/drive_v3/version.rb
CHANGED
data/package.json
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"bootstrap-sha": "5a278a837f3d444a85b9bcfd70bc194708bed0af",
|
3
|
+
"packages": {
|
4
|
+
".": {
|
5
|
+
"release-type": "ruby",
|
6
|
+
"package-name": "drive_v3",
|
7
|
+
"changelog-path": "CHANGELOG.md",
|
8
|
+
"version-file": "lib/drive_v3/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: drive_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2
|
4
|
+
version: 0.3.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
|
@@ -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,14 +217,14 @@ dependencies:
|
|
190
217
|
requirements:
|
191
218
|
- - "~>"
|
192
219
|
- !ruby/object:Gem::Version
|
193
|
-
version: '0.
|
220
|
+
version: '0.55'
|
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.55'
|
201
228
|
- !ruby/object:Gem::Dependency
|
202
229
|
name: googleauth
|
203
230
|
requirement: !ruby/object:Gem::Requirement
|
@@ -218,14 +245,14 @@ dependencies:
|
|
218
245
|
requirements:
|
219
246
|
- - "~>"
|
220
247
|
- !ruby/object:Gem::Version
|
221
|
-
version: '2.
|
248
|
+
version: '2.3'
|
222
249
|
type: :runtime
|
223
250
|
prerelease: false
|
224
251
|
version_requirements: !ruby/object:Gem::Requirement
|
225
252
|
requirements:
|
226
253
|
- - "~>"
|
227
254
|
- !ruby/object:Gem::Version
|
228
|
-
version: '2.
|
255
|
+
version: '2.3'
|
229
256
|
- !ruby/object:Gem::Dependency
|
230
257
|
name: rltk
|
231
258
|
requirement: !ruby/object:Gem::Requirement
|
@@ -247,7 +274,10 @@ executables: []
|
|
247
274
|
extensions: []
|
248
275
|
extra_rdoc_files: []
|
249
276
|
files:
|
277
|
+
- ".commitlintrc.yml"
|
278
|
+
- ".husky/commit-msg"
|
250
279
|
- ".markdownlint.yml"
|
280
|
+
- ".release-please-manifest.json"
|
251
281
|
- ".rspec"
|
252
282
|
- ".rubocop.yml"
|
253
283
|
- ".yardopts"
|
@@ -274,6 +304,8 @@ files:
|
|
274
304
|
- lib/drive_v3.rb
|
275
305
|
- lib/drive_v3/create_credential.rb
|
276
306
|
- lib/drive_v3/version.rb
|
307
|
+
- package.json
|
308
|
+
- release-please-config.json
|
277
309
|
homepage: https://github.com/main-branch/drive_v3
|
278
310
|
licenses:
|
279
311
|
- MIT
|
@@ -282,8 +314,8 @@ metadata:
|
|
282
314
|
rubygems_mfa_required: 'true'
|
283
315
|
homepage_uri: https://github.com/main-branch/drive_v3
|
284
316
|
source_code_uri: https://github.com/main-branch/drive_v3
|
285
|
-
|
286
|
-
|
317
|
+
documentation_uri: https://rubydoc.info/gems/drive_v3/0.3.2
|
318
|
+
changelog_uri: https://rubydoc.info/gems/drive_v3/0.3.2/file/CHANGELOG.md
|
287
319
|
rdoc_options: []
|
288
320
|
require_paths:
|
289
321
|
- lib
|
@@ -297,9 +329,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
297
329
|
- - ">="
|
298
330
|
- !ruby/object:Gem::Version
|
299
331
|
version: '0'
|
300
|
-
requirements:
|
301
|
-
|
302
|
-
|
332
|
+
requirements:
|
333
|
+
- 'Platform: Mac, Linux, or Windows'
|
334
|
+
- 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
|
335
|
+
rubygems_version: 3.6.7
|
303
336
|
specification_version: 4
|
304
337
|
summary: Unofficial helpers and extensions for the Google Drive V3 API
|
305
338
|
test_files: []
|