google-ads-googleads 41.0.0 → 41.1.0

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
  SHA256:
3
- metadata.gz: a6e1714acbf570672e0dccabb5bfab917b9b3f07628b6123ce0f858d8d1a402b
4
- data.tar.gz: 36ac1d965e0634fcca313e8e8268c68026b42a39cb8531fd0fb0a99481d4ec24
3
+ metadata.gz: 708e6e576beaea7214cf9136d3179582442b548c77b110597ac80e58517d907a
4
+ data.tar.gz: dd31a12e0ac083307ed14c97724ce5be2360ff222f03a7519c7de0b59dbaa2a1
5
5
  SHA512:
6
- metadata.gz: 136a437564c62152c8032ad8d2937f94ad0838c2127fc4dc0d064663d3f5741ce7fe3bb3fc33d03f26aac036926508828a0cb34543b300d9e5fcd202e85d71c3
7
- data.tar.gz: 69ecd0d7161050f5f69d0435c5023a435cbfe2624d8a146a8779fcd893ab2e5ec6bdb63ef92819594169934325739ee459d9d031ea728e1c417eb75a0509734f
6
+ metadata.gz: eeaa8f6da4ec0da8e6e64591abee30a1bcde0ef7533357c9bb1972a08b9ba537153d10f16b2b679db2f8e498924f30900285be8200aea32567590850f0dbfb44
7
+ data.tar.gz: 0e69fb690e2d45a0d96ad15aa1037a461b182d1800171b9d357cfb09a51e374de749b6a1d4fe1d813e807d7d072c86b3eedb70bbcebbb88b2547e12a0675d2b4
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 41.1.0
2
+ -----
3
+ - Added Bundler autorequire support
4
+ - Restored block forwarding.
5
+
1
6
  41.0.0
2
7
  -----
3
8
  - Compatibility with v24 of the API: https://developers.google.com/google-ads/api/docs/release-notes
@@ -41,16 +41,16 @@ module Google
41
41
  write_field(request, value, name)
42
42
  end
43
43
 
44
- service.public_send(name, request, options)
44
+ service.public_send(name, request, options, &blk)
45
45
  elsif !kwargs.empty? && args.empty?
46
46
  kwargs.each do |name, value|
47
47
  write_field(request, value, name)
48
48
  end
49
49
 
50
- service.public_send(name, request, nil)
50
+ service.public_send(name, request, nil, &blk)
51
51
  elsif args.empty?
52
52
  # no args specified at all, just pass through
53
- service.public_send(name, request, nil)
53
+ service.public_send(name, request, nil, &blk)
54
54
  else
55
55
  # this branch is the legacy version, which is no longer supported
56
56
 
@@ -20,7 +20,7 @@ module Google
20
20
  module Ads
21
21
  module GoogleAds
22
22
  CLIENT_LIB_NAME = 'gccl'.freeze
23
- CLIENT_LIB_VERSION = '41.0.0'.freeze
23
+ CLIENT_LIB_VERSION = '41.1.0'.freeze
24
24
  VERSION = CLIENT_LIB_VERSION
25
25
  end
26
26
  end
@@ -0,0 +1,3 @@
1
+ # This file exists only to support Bundler autorequire based on the gem name.
2
+ # It should not be required directly.
3
+ require 'google/ads/google_ads'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-ads-googleads
3
3
  version: !ruby/object:Gem::Version
4
- version: 41.0.0
4
+ version: 41.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google Inc
@@ -5721,6 +5721,7 @@ files:
5721
5721
  - lib/google/ads/google_ads/v24/services/youtube_video_upload_service_services_pb.rb
5722
5722
  - lib/google/ads/google_ads/version.rb
5723
5723
  - lib/google/ads/google_ads/version_alternate.rb
5724
+ - lib/google/ads/googleads.rb
5724
5725
  homepage: https://github.com/googleads/google-ads-ruby
5725
5726
  licenses:
5726
5727
  - Apache-2.0