@@ -2,35 +2,35 @@ lib = File.expand_path('../lib', __FILE__)
22$LOAD_PATH. unshift ( lib ) unless $LOAD_PATH. include? ( lib )
33require 'google/apis/version'
44
5- Gem ::Specification . new do |spec |
6- spec . name = 'google-api-client'
7- spec . version = Google ::Apis ::VERSION
8- spec . authors = [ 'Steven Bazyl' , 'Tim Emiola' , 'Sergio Gomes' , 'Bob Aman' ]
9- spec . email = [ '[email protected] ' ] 10- spec . summary = 'Client for accessing Google APIs'
11- spec . homepage = 'https://github.com/google/google-api-ruby-client'
12- spec . license = 'Apache-2.0'
13- spec . metadata = {
5+ Gem ::Specification . new do |gem |
6+ gem . name = 'google-api-client'
7+ gem . version = Google ::Apis ::VERSION
8+ gem . authors = [ 'Steven Bazyl' , 'Tim Emiola' , 'Sergio Gomes' , 'Bob Aman' ]
9+ 10+ gem . summary = 'Client for accessing Google APIs'
11+ gem . homepage = 'https://github.com/google/google-api-ruby-client'
12+ gem . license = 'Apache-2.0'
13+ gem . metadata = {
1414 "documentation_uri" => "https://googleapis.dev/ruby/google-api-client/v#{ Google ::Apis ::VERSION } "
1515 }
1616
17- spec . files = `git ls-files -z`
18- . split ( "\x0 " )
19- . reject { |f | f . match ( %r{^(spec|script)/|^api_names_out|synth\. metadata} ) }
17+ gem . files = `git ls-files -z`
18+ . split ( "\x0 " )
19+ . reject { |f | f . match ( %r{^(spec|script)/|^api_names_out|synth\. metadata} ) }
2020
21- spec . executables = spec . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
22- spec . require_paths = %w[ lib generated ]
21+ gem . executables = gem . files . grep ( %r{^bin/} ) { |f | File . basename ( f ) }
22+ gem . require_paths = %w[ lib generated ]
2323
24- spec . required_ruby_version = '>= 2.4'
24+ gem . required_ruby_version = '>= 2.4'
2525
26- spec . add_runtime_dependency 'representable' , '~> 3.0'
27- spec . add_runtime_dependency 'retriable' , '>= 2.0' , '< 4.0'
28- spec . add_runtime_dependency 'addressable' , '~> 2.5' , '>= 2.5.1'
29- spec . add_runtime_dependency 'mini_mime' , '~> 1.0'
30- spec . add_runtime_dependency 'signet' , '~> 0.12'
31- spec . add_runtime_dependency 'googleauth' , '~> 0.9'
32- spec . add_runtime_dependency 'httpclient' , '>= 2.8.1' , '< 3.0'
33- spec . add_runtime_dependency 'rexml'
34- spec . add_development_dependency 'thor' , '~> 0.19'
35- spec . add_development_dependency 'activesupport' , '>= 4.2' , '< 5.1'
26+ gem . add_runtime_dependency 'representable' , '~> 3.0'
27+ gem . add_runtime_dependency 'retriable' , '>= 2.0' , '< 4.0'
28+ gem . add_runtime_dependency 'addressable' , '~> 2.5' , '>= 2.5.1'
29+ gem . add_runtime_dependency 'mini_mime' , '~> 1.0'
30+ gem . add_runtime_dependency 'signet' , '~> 0.12'
31+ gem . add_runtime_dependency 'googleauth' , '~> 0.9'
32+ gem . add_runtime_dependency 'httpclient' , '>= 2.8.1' , '< 3.0'
33+ gem . add_runtime_dependency 'rexml'
34+ gem . add_development_dependency 'thor' , '~> 0.19'
35+ gem . add_development_dependency 'activesupport' , '>= 4.2' , '< 5.1'
3636end
0 commit comments