forked from gimite/google-drive-ruby
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgoogle_drive.gemspec
More file actions
30 lines (27 loc) · 1.6 KB
/
Copy pathgoogle_drive.gemspec
File metadata and controls
30 lines (27 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Gem::Specification.new do |spec|
spec.name = 'google_drive_maintained'
spec.version = '3.0.11'
spec.authors = ['Hiroshi Ichikawa']
spec.email = ['gimite+github@gmail.com']
spec.summary = 'Access and manipulate spreadsheets and files in Google Drive easily.'
spec.description = 'This Ruby library provides a convenient interface for reading and writing files and spreadsheets stored in Google Drive and Google Docs. It supports authentication, worksheet manipulation, and now includes background color styling and Cell object access.'
spec.homepage = 'https://github.com/y-bonfire/google-drive-ruby-maintained'
spec.license = 'BSD-3-Clause'
spec.required_ruby_version = '>= 3.1'
spec.files = ['README.md'] + Dir['lib/**/*']
spec.require_paths = ['lib']
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/y-bonfire/google-drive-ruby-maintained",
"changelog_uri" => "https://github.com/y-bonfire/google-drive-ruby-maintained/blob/main/CHANGELOG.md",
"bug_tracker_uri" => "https://github.com/y-bonfire/google-drive-ruby-maintained/issues",
"documentation_uri" => "https://rubydoc.info/gems/google_drive_ruby_maintained"
}
spec.add_dependency('nokogiri', ['>= 1.18', '< 2.0.0'])
spec.add_dependency('google-apis-drive_v3', '>= 0.63.0')
spec.add_dependency('google-apis-sheets_v4', '>= 0.42.0')
spec.add_dependency('googleauth', ['>= 1.14'])
spec.add_development_dependency('test-unit', ['>= 3.0.0', '< 4.0.0'])
spec.add_development_dependency('rake', ['>= 13.0.3'])
spec.add_development_dependency('rspec-mocks', ['>= 3.4.0', '< 4.0.0'])
end