google-ads-savon 1.0.2 → 1.0.3

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
  SHA1:
3
- metadata.gz: 761d8526087e3e358b90adc11a723e357367616c
4
- data.tar.gz: 651361912d439c5f72f50715edcb58c307e81c10
3
+ metadata.gz: 13b949dd7316580aa4637cc00660e55691cdd5fb
4
+ data.tar.gz: aca9a096623e58bd27bd0de8b1c01ef662a83280
5
5
  SHA512:
6
- metadata.gz: a165b681d420849d871ec7447b030b6792f270c63773caaaeffb1694bbc28950f4aca27ec5b9d9f90040bc25d48482b608e96c4d51ccc468f04043351ad4eea9
7
- data.tar.gz: 101d827438d230ea195bc63d2addafd57979d71cf971d417de273867138bc104867e25530059e2258388a3207afcf135a04f30352ab8e453fbf8d127fe0cc56f
6
+ metadata.gz: 487849e5bca7e37f6be1bc0c6cf7066f56f81ed052ac85cd52d6e8a3966f61a4cac4492b0fecc90c47d8df849da1d3e9685ebc184d063d163ace48fa61e681c1
7
+ data.tar.gz: f982c2e8015d7eceff1fa83e364a3d74fd1af3822cf654e584f38013ebc7fa4aaab838ff2926f68e51a79860128c68e3543da6efe15e79095cdf31bc3a168778
data/ChangeLog CHANGED
@@ -1,3 +1,6 @@
1
+ 1.0.3:
2
+ - Relaxed builder dependencies to improve compatibility with Rails.
3
+
1
4
  1.0.2:
2
5
  - Fixing https://github.com/googleads/google-api-ads-ruby/issues/7
3
6
  - Updating nokogiri and builder dependencies to newer versions.
@@ -1,5 +1,5 @@
1
1
  # Module to keep the current library version.
2
2
 
3
3
  module GoogleAdsSavon
4
- VERSION = "1.0.2"
4
+ VERSION = "1.0.3"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-ads-savon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Harrington
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-07 00:00:00.000000000 Z
11
+ date: 2017-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nori
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '3.2'
89
+ version: '3.0'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '3.2'
96
+ version: '3.0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: nokogiri
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -170,12 +170,9 @@ executables: []
170
170
  extensions: []
171
171
  extra_rdoc_files: []
172
172
  files:
173
- - CONTRIBUTING
174
173
  - ChangeLog
175
174
  - LICENSE
176
175
  - README.md
177
- - Rakefile
178
- - google-ads-savon.gemspec
179
176
  - lib/ads_savon.rb
180
177
  - lib/ads_savon/client.rb
181
178
  - lib/ads_savon/config.rb
@@ -216,7 +213,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
213
  version: '0'
217
214
  requirements: []
218
215
  rubyforge_project: google-ads-savon
219
- rubygems_version: 2.4.8
216
+ rubygems_version: 2.6.8
220
217
  signing_key:
221
218
  specification_version: 4
222
219
  summary: Heavy metal SOAP client
@@ -1,24 +0,0 @@
1
- Want to contribute? Great! First, read this page (including the small print at the end).
2
-
3
- ### Before you contribute
4
- Before we can use your code, you must sign the
5
- [Google Individual Contributor License Agreement](https://developers.google.com/open-source/cla/individual?csw=1)
6
- (CLA), which you can do online. The CLA is necessary mainly because you own the
7
- copyright to your changes, even after your contribution becomes part of our
8
- codebase, so we need your permission to use and distribute your code. We also
9
- need to be sure of various other things—for instance that you'll tell us if you
10
- know that your code infringes on other people's patents. You don't have to sign
11
- the CLA until after you've submitted your code for review and a member has
12
- approved it, but you must do it before we can put your code into our codebase.
13
- Before you start working on a larger contribution, you should get in touch with
14
- us first through the issue tracker with your idea so that we can help out and
15
- possibly guide you. Coordinating up front makes it much easier to avoid
16
- frustration later on.
17
-
18
- ### Code reviews
19
- All submissions, including submissions by project members, require review. We
20
- use Github pull requests for this purpose.
21
-
22
- ### The small print
23
- Contributions made by corporations are covered by a different agreement than
24
- the one above, the Software Grant and Corporate Contributor License Agreement.
data/Rakefile DELETED
@@ -1,5 +0,0 @@
1
- desc 'Package the Google Ads Savon library into a gem file.'
2
- task :build do
3
- result = system('/usr/bin/env gem build google-ads-savon.gemspec')
4
- raise 'Build failed.' unless result
5
- end
@@ -1,35 +0,0 @@
1
- # -*- encoding : utf-8 -*-
2
- lib = File.expand_path("../lib", __FILE__)
3
- $:.unshift lib unless $:.include? lib
4
-
5
- require "ads_savon/version"
6
-
7
- Gem::Specification.new do |s|
8
- s.name = "google-ads-savon"
9
- s.version = GoogleAdsSavon::VERSION
10
- s.authors = "Daniel Harrington"
11
- s.email = "me@rubiii.com"
12
- s.homepage = "http://savonrb.com"
13
- s.summary = "Heavy metal SOAP client"
14
- s.description = "Delicious SOAP for the Ruby community"
15
-
16
- s.rubyforge_project = s.name
17
- s.license = 'MIT'
18
-
19
- s.add_dependency "nori", "~> 2.6"
20
- s.add_dependency "httpi", "~> 2.3"
21
- s.add_dependency "wasabi", "~> 3.4"
22
- s.add_dependency "akami", "~> 1.2"
23
- s.add_dependency "gyoku", "~> 1.2"
24
-
25
- s.add_dependency "builder", "~> 3.2"
26
- s.add_dependency "nokogiri", "~> 1.6"
27
-
28
- s.add_development_dependency "rake", "~> 10.1"
29
- s.add_development_dependency "rspec", "~> 2.14"
30
- s.add_development_dependency "mocha", "~> 0.14"
31
- s.add_development_dependency "timecop", "~> 0.3"
32
-
33
- s.files = Dir["**/*"]
34
- s.require_path = "lib"
35
- end