adwords4r 11.0.2 → 11.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.txt +6 -1
- data/Rakefile +3 -3
- data/lib/adwords4r.rb +1 -1
- metadata +4 -4
data/ChangeLog.txt
CHANGED
@@ -1,8 +1,13 @@
|
|
1
|
-
11.0.
|
1
|
+
11.0.3
|
2
|
+
- update soap4r minimum version requirement in the .gem file to 1.5.8, as there are compatibility problems with 1.5.6
|
3
|
+
- the ADWORDS4R_DEBUG environment variable was causing problems when it was not set instead of silently disabling debugging; this is fixed.
|
4
|
+
|
5
|
+
11.0.2
|
2
6
|
- Jeffrey Posnick (jeffy@google.com) takes over as maintainer of this project
|
3
7
|
- added support for AdWords API v11
|
4
8
|
- removed support for AdWords API v9
|
5
9
|
- added support for the ADWORDS4R_DEBUG environment variable--if set to TRUE, SOAP logs will be written to the current directory when the API is used
|
10
|
+
- added support for the SiteSuggestionService for API v10 and v11
|
6
11
|
|
7
12
|
1.0
|
8
13
|
- added support for API v10
|
data/Rakefile
CHANGED
@@ -16,7 +16,7 @@ require 'lib/adwords4r/services'
|
|
16
16
|
|
17
17
|
CLOBBER.include('pkg')
|
18
18
|
|
19
|
-
CURRENT_VERSION = '11.0.
|
19
|
+
CURRENT_VERSION = '11.0.3'
|
20
20
|
PKG_VERSION = ENV['REL'] ? ENV['REL'] : CURRENT_VERSION
|
21
21
|
|
22
22
|
SRC_RB = FileList['lib/**/*.rb']
|
@@ -181,10 +181,10 @@ Currently the following AdWords API versions are supported:\
|
|
181
181
|
s.author = "Jeffrey Posnick, Patrick Chanezon, Ryan Leavengood"
|
182
182
|
s.email = "jeffy@google.com"
|
183
183
|
s.homepage = "http://rubyforge.org/projects/google4r/"
|
184
|
-
s.requirements << 'soap4r v1.5.
|
184
|
+
s.requirements << 'soap4r v1.5.8 or greater'
|
185
185
|
s.requirements << 'httpclient v2.1.2 or greater'
|
186
186
|
s.rubyforge_project = 'google4r'
|
187
|
-
s.add_dependency('soap4r', '>= 1.5.
|
187
|
+
s.add_dependency('soap4r', '>= 1.5.8')
|
188
188
|
s.add_dependency('httpclient', '>= 2.1.2')
|
189
189
|
end
|
190
190
|
|
data/lib/adwords4r.rb
CHANGED
@@ -78,7 +78,7 @@ module AdWords
|
|
78
78
|
end
|
79
79
|
@credentials.handlers.each {|h| driver.headerhandler << h}
|
80
80
|
|
81
|
-
if ENV['ADWORDS4R_DEBUG'].upcase == 'TRUE'
|
81
|
+
if !ENV['ADWORDS4R_DEBUG'].nil? && ENV['ADWORDS4R_DEBUG'].upcase == 'TRUE'
|
82
82
|
driver.wiredump_file_base = "SOAP_#{$$}"
|
83
83
|
end
|
84
84
|
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
|
|
3
3
|
specification_version: 1
|
4
4
|
name: adwords4r
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 11.0.
|
7
|
-
date: 2007-
|
6
|
+
version: 11.0.3
|
7
|
+
date: 2007-12-12 00:00:00 -05:00
|
8
8
|
summary: Client library for the AdWords API.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -118,7 +118,7 @@ executables: []
|
|
118
118
|
extensions: []
|
119
119
|
|
120
120
|
requirements:
|
121
|
-
- soap4r v1.5.
|
121
|
+
- soap4r v1.5.8 or greater
|
122
122
|
- httpclient v2.1.2 or greater
|
123
123
|
dependencies:
|
124
124
|
- !ruby/object:Gem::Dependency
|
@@ -128,7 +128,7 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 1.5.
|
131
|
+
version: 1.5.8
|
132
132
|
version:
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
134
|
name: httpclient
|