File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ programmatically access your accounts.
2020 - Support for logging incoming and outgoing SOAP messages
2121 - Support for logging request information
2222 - Based on Savon library
23- - Ruby >=2.6 compatible
23+ - Ruby >=2.7 compatible
2424 - OAuth2 and OAuth2 JWT built-in authentication
2525 - Local validation for parameter number and type on API calls
2626 - Thread-safe
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ 2.0.0:
2+ - Updated minimum Ruby version to 2.7.
3+
141.0.3:
25 - Updated rake dependency requirements.
36
Original file line number Diff line number Diff line change @@ -30,15 +30,17 @@ Gem::Specification.new do |s|
3030 s . email = [ 'adwordsapiadvisor+michael@google.com' ]
3131 s . license = 'Apache-2.0'
3232 s . platform = Gem ::Platform ::RUBY
33- s . required_ruby_version = '>= 2.0 '
33+ s . required_ruby_version = '>= 2.7 '
3434 s . required_rubygems_version = '>= 1.3.6'
3535 s . rubyforge_project = 'google-ads-common'
3636 s . require_path = 'lib'
37- s . files = Dir . glob ( 'lib/**/*' ) + %w( COPYING README.md ChangeLog )
37+ s . files = Dir . glob ( 'lib/**/*' ) + %w( README.md ChangeLog )
38+ s . add_runtime_dependency ( 'faraday' , '>= 0.9' , '< 2.0' )
3839 s . add_runtime_dependency ( 'google-ads-savon' , '~> 1.0' , '>=1.0.2' )
3940 s . add_runtime_dependency ( 'httpi' , '~> 2.3' )
4041 s . add_runtime_dependency ( 'httpclient' , '~> 2.7' )
4142 s . add_runtime_dependency ( 'signet' , '~> 0.7' )
43+ s . add_runtime_dependency ( 'nokogiri' , '~> 1.12.5' )
4244 s . add_development_dependency ( 'rake' , '>= 12.3.3' , '< 13.0' )
4345 s . add_development_dependency ( 'test-unit' , '~> 3.2' )
4446 s . add_development_dependency ( 'webmock' , '~> 3.0' )
Original file line number Diff line number Diff line change 1919
2020module AdsCommon
2121 module ApiConfig
22- CLIENT_LIB_VERSION = '1 .0.3 '
22+ CLIENT_LIB_VERSION = '2 .0.0 '
2323 end
2424end
Original file line number Diff line number Diff line change 1818#
1919# Tests environment is correct.
2020
21+ require 'rake'
2122require 'openssl'
2223require 'test/unit'
2324
@@ -38,6 +39,6 @@ def test_openssl_version
3839
3940 # Output rake version to the tests log.
4041 def test_rake_version
41- puts "\n Running with rake %s.\n " % Rake ::VERSION if defined? ( Rake )
42+ puts "\n Running with rake %s.\n " % Rake ::VERSION if defined? ( Rake :: VERSION )
4243 end
4344end
You can’t perform that action at this time.
0 commit comments