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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb569b1ffaa8be00b9f846624af85f93e8d09739fa9d0ea2c10c0a7854fd4952
4
- data.tar.gz: 75a30ae59c88404277a8e0c904887d1f7799e1e62afdade7ba8268840c5b941b
3
+ metadata.gz: f3583f88e9d033a4d8bd637d65980ff986cfa6288f6c4c4ddbc332fdd6e13ef4
4
+ data.tar.gz: f8c3df20cbfcea764fb55950d962c7e1e3fdf8071ee443364004f0e0843d4f3a
5
5
  SHA512:
6
- metadata.gz: ecad9653b07257b4895e277d9f5558e71a68db4ae68c0fc193404b525695f137381263314c304e8231e70e86b355afbb9fb900c2072286a49948b37fb1929c42
7
- data.tar.gz: 86113a5a2ce266cbbca8e9bc4005ee2c8c3e9c02d8dd2ab416edb580f1e7e935de25225a8b2e33059838b3f9ad74e9e7de0a7e0c921aa1c89992d9fd6d123b63
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 trailig punctuation in a header
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
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "0.3.2"
3
+ }
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
- 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
37
-
data/.yardopts CHANGED
@@ -3,4 +3,6 @@
3
3
  --markup-provider=redcarpet
4
4
  --markup markdown
5
5
  - CHANGELOG.md
6
- - LICENSE.txt
6
+ - CONTRIBUTING.md
7
+ - RELEASING.md
8
+ - LICENSE.txt
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
@@ -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,38 +3,50 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/drive_v3.svg)](https://badge.fury.io/rb/drive_v3)
4
4
  [![Documentation](https://img.shields.io/badge/Documentation-Latest-green)](https://rubydoc.info/gems/drive_v3/)
5
5
  [![Change Log](https://img.shields.io/badge/CHANGELOG-Latest-green)](https://rubydoc.info/gems/drive_v3/file/CHANGELOG.md)
6
- [![Build Status](https://github.com/main-branch/drive_v3/workflows/CI%20Build/badge.svg?branch=main)](https://github.com/main-branch/drive_v3/actions?query=workflow%3ACI%20Build)
7
- [![Maintainability](https://api.codeclimate.com/v1/badges/aeebc016487c5cad881e/maintainability)](https://codeclimate.com/github/main-branch/drive_v3/maintainability)
8
- [![Test Coverage](https://api.codeclimate.com/v1/badges/aeebc016487c5cad881e/test_coverage)](https://codeclimate.com/github/main-branch/drive_v3/test_coverage)
6
+ [![Build Status](https://github.com/main-branch/drive_v3/actions/workflows/continuous_integration.yml/badge.svg)](https://github.com/main-branch/drive_v3/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/drive__v3-yellow.svg?logo=slack)](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
- * [DriveV3 documenation](#drivev3-documenation)
16
- * [General API documentation](#general-api-documentation)
17
- * [Ruby implementation of the Drive API](#ruby-implementation-of-the-drive-api)
18
- * [Other links](#other-links)
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
- * [Create a Google Cloud project](#create-a-google-cloud-project)
21
- * [Enable the APIs you want to use](#enable-the-apis-you-want-to-use)
22
- * [Download a Google API credential file](#download-a-google-api-credential-file)
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
- * [Obtaining an authenticated DriveService](#obtaining-an-authenticated-driveservice)
25
- * [Building a request](#building-a-request)
26
- * [Method 1: constructing requests using `Google::Apis::SheetsV4::*` objects](#method-1-constructing-requests-using-googleapissheetsv4-objects)
27
- * [Method 2: constructing requests using hashes](#method-2-constructing-requests-using-hashes)
28
- * [Which method should be used?](#which-method-should-be-used)
29
- * [Validating requests](#validating-requests)
30
- * [Google Extensions](#google-extensions)
31
- * [SheetsService Extensions](#sheetsservice-extensions)
32
- * [Spreadsheet Extensions](#spreadsheet-extensions)
33
- * [Sheet Extensions](#sheet-extensions)
34
- * [Working with dates and times](#working-with-dates-and-times)
35
- * [Working with colors](#working-with-colors)
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 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
@@ -2,5 +2,5 @@
2
2
 
3
3
  module DriveV3
4
4
  # The version of this gem
5
- VERSION = '0.2.1'
5
+ VERSION = '0.3.2'
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": "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.1
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: 2023-12-06 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.48'
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.48'
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.26'
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.26'
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.0'
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.0'
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
- changelog_uri: https://rubydoc.info/gems/drive_v3/file/CHANGELOG.md
286
- post_install_message:
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
- rubygems_version: 3.4.10
302
- signing_key:
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: []