bing_ads_ruby_sdk 1.3.4 → 1.5.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 +4 -4
- data/.circleci/config.yml +21 -19
- data/.github/.keep +0 -0
- data/.github/renovate.json +225 -0
- data/Gemfile +2 -0
- data/Rakefile +4 -4
- data/bing_ads_ruby_sdk.gemspec +25 -27
- data/changelog.md +10 -0
- data/lib/bing_ads_ruby_sdk/api.rb +3 -6
- data/lib/bing_ads_ruby_sdk/augmented_parser.rb +0 -1
- data/lib/bing_ads_ruby_sdk/configuration.rb +1 -1
- data/lib/bing_ads_ruby_sdk/errors/error_handler.rb +1 -1
- data/lib/bing_ads_ruby_sdk/errors/errors.rb +9 -10
- data/lib/bing_ads_ruby_sdk/header.rb +3 -3
- data/lib/bing_ads_ruby_sdk/http_client.rb +6 -6
- data/lib/bing_ads_ruby_sdk/log_message.rb +2 -3
- data/lib/bing_ads_ruby_sdk/oauth2/authorization_handler.rb +24 -21
- data/lib/bing_ads_ruby_sdk/oauth2/fs_store.rb +2 -2
- data/lib/bing_ads_ruby_sdk/postprocessors/cast_long_arrays.rb +2 -3
- data/lib/bing_ads_ruby_sdk/postprocessors/snakize.rb +2 -3
- data/lib/bing_ads_ruby_sdk/preprocessors/camelize.rb +3 -4
- data/lib/bing_ads_ruby_sdk/preprocessors/order.rb +2 -3
- data/lib/bing_ads_ruby_sdk/services/ad_insight.rb +1 -2
- data/lib/bing_ads_ruby_sdk/services/base.rb +13 -10
- data/lib/bing_ads_ruby_sdk/services/bulk.rb +1 -2
- data/lib/bing_ads_ruby_sdk/services/campaign_management.rb +2 -5
- data/lib/bing_ads_ruby_sdk/services/customer_billing.rb +1 -2
- data/lib/bing_ads_ruby_sdk/services/customer_management.rb +1 -2
- data/lib/bing_ads_ruby_sdk/services/reporting.rb +1 -2
- data/lib/bing_ads_ruby_sdk/soap_client.rb +11 -17
- data/lib/bing_ads_ruby_sdk/string_utils.rb +6 -7
- data/lib/bing_ads_ruby_sdk/version.rb +1 -1
- data/lib/bing_ads_ruby_sdk/wsdl_operation_wrapper.rb +0 -1
- data/lib/bing_ads_ruby_sdk.rb +10 -9
- data/spec/bing_ads_ruby_sdk/api_spec.rb +3 -3
- data/spec/bing_ads_ruby_sdk/errors/error_handler_spec.rb +112 -114
- data/spec/bing_ads_ruby_sdk/errors/errors_spec.rb +4 -4
- data/spec/bing_ads_ruby_sdk/header_spec.rb +22 -22
- data/spec/bing_ads_ruby_sdk/http_client_spec.rb +3 -5
- data/spec/bing_ads_ruby_sdk/oauth2/fs_store_spec.rb +2 -3
- data/spec/bing_ads_ruby_sdk/postprocessors/cast_long_arrays_spec.rb +4 -5
- data/spec/bing_ads_ruby_sdk/postprocessors/snakize_spec.rb +1 -2
- data/spec/bing_ads_ruby_sdk/preprocessors/camelize_spec.rb +1 -2
- data/spec/bing_ads_ruby_sdk/preprocessors/order_spec.rb +87 -76
- data/spec/bing_ads_ruby_sdk/services/bulk_spec.rb +7 -12
- data/spec/bing_ads_ruby_sdk/services/campaign_management_spec.rb +74 -67
- data/spec/bing_ads_ruby_sdk/services/customer_management_spec.rb +22 -23
- data/spec/examples/1_customer_creation/customer_spec.rb +11 -11
- data/spec/examples/2_with_customer/budget_spec.rb +19 -21
- data/spec/examples/2_with_customer/campaigns_spec.rb +9 -10
- data/spec/examples/2_with_customer/customer_management_spec.rb +37 -39
- data/spec/examples/2_with_customer/uet_tags_spec.rb +14 -14
- data/spec/examples/3_with_uet_tag/conversion_goal_spec.rb +19 -19
- data/spec/examples/3_with_uet_tag/uet_tags_spec.rb +15 -15
- data/spec/examples/4_with_conversion_goal/conversion_goals_spec.rb +23 -22
- data/spec/examples/5_with_campaign/ad_extension_spec.rb +20 -23
- data/spec/examples/5_with_campaign/ad_group_spec.rb +14 -15
- data/spec/examples/5_with_campaign/campaign_criterions_spec.rb +21 -23
- data/spec/examples/5_with_campaign/campaign_spec.rb +17 -18
- data/spec/examples/6_with_ad_group/ad_group_spec.rb +19 -20
- data/spec/examples/6_with_ad_group/ads_spec.rb +38 -41
- data/spec/examples/6_with_ad_group/keywords_spec.rb +29 -32
- data/spec/examples/examples.rb +3 -4
- data/spec/spec_helper.rb +10 -10
- data/spec/support/spec_helpers.rb +10 -9
- data/tasks/bing_ads_ruby_sdk.rake +7 -8
- metadata +8 -84
- data/.github/delete-merged-branch-config.yml +0 -6
- data/.github/stale.yml +0 -19
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
require_relative
|
|
1
|
+
require_relative "../examples"
|
|
2
2
|
|
|
3
|
-
RSpec.describe
|
|
4
|
-
include_context
|
|
3
|
+
RSpec.describe "Keyword methods" do
|
|
4
|
+
include_context "use api"
|
|
5
5
|
|
|
6
|
-
describe
|
|
6
|
+
describe "Keyword methods" do
|
|
7
7
|
let(:a_keyword) do
|
|
8
8
|
{
|
|
9
9
|
bid: a_kind_of(Hash),
|
|
@@ -23,7 +23,7 @@ RSpec.describe 'Keyword methods' do
|
|
|
23
23
|
status: a_kind_of(String),
|
|
24
24
|
text: a_kind_of(String),
|
|
25
25
|
tracking_url_template: nil,
|
|
26
|
-
url_custom_parameters: nil
|
|
26
|
+
url_custom_parameters: nil
|
|
27
27
|
}
|
|
28
28
|
end
|
|
29
29
|
|
|
@@ -31,77 +31,74 @@ RSpec.describe 'Keyword methods' do
|
|
|
31
31
|
let(:add_keywords) do
|
|
32
32
|
api.campaign_management.call(:add_keywords,
|
|
33
33
|
ad_group_id: Examples.ad_group_id,
|
|
34
|
-
keywords: {
|
|
35
|
-
bid: {
|
|
36
|
-
match_type:
|
|
37
|
-
text: "AcceptanceTestKeyword - #{random}"
|
|
38
|
-
}
|
|
39
|
-
)
|
|
34
|
+
keywords: {keyword: {
|
|
35
|
+
bid: {amount: 0.05},
|
|
36
|
+
match_type: "Exact",
|
|
37
|
+
text: "AcceptanceTestKeyword - #{random}"
|
|
38
|
+
}})
|
|
40
39
|
end
|
|
41
40
|
|
|
42
|
-
describe
|
|
43
|
-
it
|
|
41
|
+
describe "#add_keywords" do
|
|
42
|
+
it "returns created Keyword ids" do
|
|
44
43
|
expect(add_keywords).to include(
|
|
45
44
|
keyword_ids: [a_kind_of(Integer)],
|
|
46
|
-
partial_errors:
|
|
45
|
+
partial_errors: ""
|
|
47
46
|
)
|
|
48
47
|
end
|
|
49
48
|
end
|
|
50
49
|
|
|
51
|
-
describe
|
|
50
|
+
describe "#get_keywords_by_ad_group_id" do
|
|
52
51
|
before { add_keywords }
|
|
53
52
|
|
|
54
|
-
it
|
|
53
|
+
it "returns a list of keywords" do
|
|
55
54
|
expect(api.campaign_management.get_keywords_by_ad_group_id(
|
|
56
55
|
ad_group_id: Examples.ad_group_id
|
|
57
56
|
)).to include(a_keyword)
|
|
58
57
|
end
|
|
59
58
|
end
|
|
60
59
|
|
|
61
|
-
describe
|
|
60
|
+
describe "#get_keywords_by_editorial_status" do
|
|
62
61
|
before { add_keywords }
|
|
63
62
|
|
|
64
|
-
it
|
|
63
|
+
it "returns a list of Keywords" do
|
|
65
64
|
expect(api.campaign_management.get_keywords_by_editorial_status(
|
|
66
65
|
ad_group_id: Examples.ad_group_id,
|
|
67
|
-
editorial_status:
|
|
66
|
+
editorial_status: "Active"
|
|
68
67
|
)).to include(a_keyword)
|
|
69
68
|
end
|
|
70
69
|
end
|
|
71
70
|
|
|
72
|
-
describe
|
|
71
|
+
describe "#get_keywords_by_ids" do
|
|
73
72
|
before { add_keywords }
|
|
74
73
|
|
|
75
|
-
it
|
|
74
|
+
it "returns a list of Keywords" do
|
|
76
75
|
expect(api.campaign_management.get_keywords_by_ids(
|
|
77
76
|
ad_group_id: Examples.ad_group_id,
|
|
78
|
-
keyword_ids: [{
|
|
77
|
+
keyword_ids: [{long: keyword_id}]
|
|
79
78
|
)).to include(a_keyword)
|
|
80
79
|
end
|
|
81
80
|
end
|
|
82
81
|
|
|
83
|
-
describe
|
|
82
|
+
describe "#update_keywords" do
|
|
84
83
|
before { add_keywords }
|
|
85
84
|
|
|
86
|
-
it
|
|
85
|
+
it "updates the keyword" do
|
|
87
86
|
expect(api.campaign_management.call(:update_keywords,
|
|
88
87
|
ad_group_id: Examples.ad_group_id,
|
|
89
|
-
keywords: {
|
|
88
|
+
keywords: {keyword: [
|
|
90
89
|
id: keyword_id,
|
|
91
|
-
bid: {
|
|
92
|
-
]
|
|
93
|
-
)).to include(partial_errors: '')
|
|
90
|
+
bid: {amount: 0.50}
|
|
91
|
+
]})).to include(partial_errors: "")
|
|
94
92
|
end
|
|
95
93
|
end
|
|
96
94
|
|
|
97
|
-
describe
|
|
95
|
+
describe "#delete_keywords" do
|
|
98
96
|
before { add_keywords }
|
|
99
97
|
|
|
100
|
-
it
|
|
98
|
+
it "returns no errors" do
|
|
101
99
|
expect(api.campaign_management.call(:delete_keywords,
|
|
102
100
|
ad_group_id: Examples.ad_group_id,
|
|
103
|
-
keyword_ids: [{
|
|
104
|
-
)).to eq(partial_errors: '')
|
|
101
|
+
keyword_ids: [{long: keyword_id}])).to eq(partial_errors: "")
|
|
105
102
|
end
|
|
106
103
|
end
|
|
107
104
|
end
|
data/spec/examples/examples.rb
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require
|
|
3
|
+
require "securerandom"
|
|
4
4
|
|
|
5
5
|
module Examples
|
|
6
6
|
class << self
|
|
7
|
-
|
|
8
7
|
def random
|
|
9
8
|
SecureRandom.hex
|
|
10
9
|
end
|
|
@@ -65,12 +64,12 @@ module Examples
|
|
|
65
64
|
end
|
|
66
65
|
|
|
67
66
|
def store_filename
|
|
68
|
-
ENV.fetch(
|
|
67
|
+
ENV.fetch("BING_STORE_FILENAME")
|
|
69
68
|
end
|
|
70
69
|
end
|
|
71
70
|
end
|
|
72
71
|
|
|
73
|
-
RSpec.shared_context
|
|
72
|
+
RSpec.shared_context "use api" do
|
|
74
73
|
let(:random) { Examples.random }
|
|
75
74
|
let(:api) { Examples.build_api }
|
|
76
75
|
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
require
|
|
2
|
-
require
|
|
3
|
-
require
|
|
1
|
+
require "simplecov"
|
|
2
|
+
require "dotenv/load"
|
|
3
|
+
require "byebug"
|
|
4
4
|
|
|
5
5
|
SimpleCov.start do
|
|
6
|
-
add_filter
|
|
6
|
+
add_filter "/spec/"
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
require
|
|
9
|
+
require "bing_ads_ruby_sdk"
|
|
10
10
|
|
|
11
|
-
Dir[File.join(BingAdsRubySdk.root_path, "spec", "support", "**", "*.rb")].each { |f| require f }
|
|
12
|
-
Dir[File.join(BingAdsRubySdk.root_path, "log", "*.log")].each do |log_file|
|
|
13
|
-
File.open(log_file,
|
|
11
|
+
Dir[File.join(BingAdsRubySdk.root_path, "spec", "support", "**", "*.rb")].sort.each { |f| require f }
|
|
12
|
+
Dir[File.join(BingAdsRubySdk.root_path, "log", "*.log")].sort.each do |log_file|
|
|
13
|
+
File.open(log_file, "w") { |f| f.truncate(0) }
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
BingAdsRubySdk.configure do |conf|
|
|
@@ -22,7 +22,7 @@ end
|
|
|
22
22
|
|
|
23
23
|
RSpec.configure do |config|
|
|
24
24
|
# Enable flags like --only-failures and --next-failure
|
|
25
|
-
config.example_status_persistence_file_path =
|
|
25
|
+
config.example_status_persistence_file_path = ".rspec_status"
|
|
26
26
|
|
|
27
27
|
# Disable RSpec exposing methods globally on `Module` and `main`
|
|
28
28
|
config.disable_monkey_patching!
|
|
@@ -30,4 +30,4 @@ RSpec.configure do |config|
|
|
|
30
30
|
config.expect_with :rspec do |c|
|
|
31
31
|
c.syntax = :expect
|
|
32
32
|
end
|
|
33
|
-
end
|
|
33
|
+
end
|
|
@@ -11,17 +11,18 @@ module SpecHelpers
|
|
|
11
11
|
OpenStruct.new(
|
|
12
12
|
content: {
|
|
13
13
|
"AuthenticationToken" => BingAdsRubySdk::LogMessage::FILTERED,
|
|
14
|
-
"DeveloperToken" =>
|
|
15
|
-
"CustomerId" =>
|
|
16
|
-
"CustomerAccountId" =>
|
|
17
|
-
|
|
14
|
+
"DeveloperToken" => BingAdsRubySdk::LogMessage::FILTERED,
|
|
15
|
+
"CustomerId" => BingAdsRubySdk::LogMessage::FILTERED,
|
|
16
|
+
"CustomerAccountId" => BingAdsRubySdk::LogMessage::FILTERED
|
|
17
|
+
}
|
|
18
|
+
)
|
|
18
19
|
end
|
|
19
20
|
|
|
20
21
|
def self.soap_client(service, header = fake_header)
|
|
21
22
|
BingAdsRubySdk::SoapClient.new(
|
|
22
23
|
service_name: service,
|
|
23
24
|
version: BingAdsRubySdk::DEFAULT_SDK_VERSION,
|
|
24
|
-
environment:
|
|
25
|
+
environment: "test",
|
|
25
26
|
header: header
|
|
26
27
|
)
|
|
27
28
|
end
|
|
@@ -31,15 +32,15 @@ module SpecHelpers
|
|
|
31
32
|
end
|
|
32
33
|
|
|
33
34
|
def self.default_store
|
|
34
|
-
::BingAdsRubySdk::OAuth2::FsStore.new(ENV[
|
|
35
|
+
::BingAdsRubySdk::OAuth2::FsStore.new(ENV["BING_STORE_FILENAME"])
|
|
35
36
|
end
|
|
36
37
|
|
|
37
38
|
# default fixture for now is standard.xml but door is open to get more use cases
|
|
38
39
|
def self.xml_path_for(service, action, filename, request = true)
|
|
39
40
|
if request
|
|
40
|
-
File.join(BingAdsRubySdk.root_path,
|
|
41
|
+
File.join(BingAdsRubySdk.root_path, "spec", "fixtures", service.to_s, action, "#{filename}.xml")
|
|
41
42
|
else
|
|
42
|
-
File.join(BingAdsRubySdk.root_path,
|
|
43
|
+
File.join(BingAdsRubySdk.root_path, "spec", "fixtures", service.to_s, action, "#{filename}_response.xml")
|
|
43
44
|
end
|
|
44
45
|
end
|
|
45
|
-
end
|
|
46
|
+
end
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
require
|
|
1
|
+
require "dotenv/load"
|
|
2
2
|
|
|
3
3
|
namespace :bing_token do
|
|
4
4
|
desc "Gets and stores Bing OAuth token in file"
|
|
5
5
|
task :get, [:filename, :bing_developer_token, :bing_client_id, :bing_client_secret] do |task, args|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
bing_client_secret = args[:bing_client_secret] || ENV.fetch('BING_CLIENT_SECRET', nil)
|
|
6
|
+
filename = args[:filename] || ENV.fetch("BING_STORE_FILENAME")
|
|
7
|
+
developer_token = args[:bing_developer_token] || ENV.fetch("BING_DEVELOPER_TOKEN")
|
|
8
|
+
bing_client_id = args[:bing_client_id] || ENV.fetch("BING_CLIENT_ID")
|
|
9
|
+
bing_client_secret = args[:bing_client_secret] || ENV.fetch("BING_CLIENT_SECRET", nil)
|
|
11
10
|
|
|
12
11
|
store = ::BingAdsRubySdk::OAuth2::FsStore.new(filename)
|
|
13
12
|
auth = BingAdsRubySdk::OAuth2::AuthorizationHandler.new(
|
|
@@ -17,9 +16,9 @@ namespace :bing_token do
|
|
|
17
16
|
store: store
|
|
18
17
|
)
|
|
19
18
|
puts "Go to #{auth.code_url}",
|
|
20
|
-
|
|
19
|
+
"You will be redirected to a URL at the end. Paste it here in the console and press enter"
|
|
21
20
|
|
|
22
|
-
full_url =
|
|
21
|
+
full_url = $stdin.gets.chomp
|
|
23
22
|
auth.fetch_from_url(full_url)
|
|
24
23
|
|
|
25
24
|
puts "Written to store"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bing_ads_ruby_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Effilab
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2022-11-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: signet
|
|
@@ -181,7 +181,7 @@ dependencies:
|
|
|
181
181
|
version: 0.4.1
|
|
182
182
|
description: Bing Ads Api Wrapper
|
|
183
183
|
email:
|
|
184
|
-
-
|
|
184
|
+
- dev@effilab.com
|
|
185
185
|
executables:
|
|
186
186
|
- console
|
|
187
187
|
- setup
|
|
@@ -189,8 +189,8 @@ extensions: []
|
|
|
189
189
|
extra_rdoc_files: []
|
|
190
190
|
files:
|
|
191
191
|
- ".circleci/config.yml"
|
|
192
|
-
- ".github
|
|
193
|
-
- ".github/
|
|
192
|
+
- ".github/.keep"
|
|
193
|
+
- ".github/renovate.json"
|
|
194
194
|
- ".gitignore"
|
|
195
195
|
- ".rspec"
|
|
196
196
|
- Gemfile
|
|
@@ -335,91 +335,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
335
335
|
requirements:
|
|
336
336
|
- - ">="
|
|
337
337
|
- !ruby/object:Gem::Version
|
|
338
|
-
version: '2.
|
|
338
|
+
version: '2.3'
|
|
339
339
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
340
340
|
requirements:
|
|
341
341
|
- - ">="
|
|
342
342
|
- !ruby/object:Gem::Version
|
|
343
343
|
version: '0'
|
|
344
344
|
requirements: []
|
|
345
|
-
rubygems_version: 3.
|
|
345
|
+
rubygems_version: 3.2.3
|
|
346
346
|
signing_key:
|
|
347
347
|
specification_version: 4
|
|
348
348
|
summary: Bing Ads Ruby SDK
|
|
349
|
-
test_files:
|
|
350
|
-
- spec/bing_ads_ruby_sdk/api_spec.rb
|
|
351
|
-
- spec/bing_ads_ruby_sdk/errors/error_handler_spec.rb
|
|
352
|
-
- spec/bing_ads_ruby_sdk/errors/errors_spec.rb
|
|
353
|
-
- spec/bing_ads_ruby_sdk/header_spec.rb
|
|
354
|
-
- spec/bing_ads_ruby_sdk/http_client_spec.rb
|
|
355
|
-
- spec/bing_ads_ruby_sdk/oauth2/fs_store_spec.rb
|
|
356
|
-
- spec/bing_ads_ruby_sdk/postprocessors/cast_long_arrays_spec.rb
|
|
357
|
-
- spec/bing_ads_ruby_sdk/postprocessors/snakize_spec.rb
|
|
358
|
-
- spec/bing_ads_ruby_sdk/preprocessors/camelize_spec.rb
|
|
359
|
-
- spec/bing_ads_ruby_sdk/preprocessors/order_spec.rb
|
|
360
|
-
- spec/bing_ads_ruby_sdk/services/bulk_spec.rb
|
|
361
|
-
- spec/bing_ads_ruby_sdk/services/campaign_management_spec.rb
|
|
362
|
-
- spec/bing_ads_ruby_sdk/services/customer_management_spec.rb
|
|
363
|
-
- spec/bing_ads_ruby_sdk_spec.rb
|
|
364
|
-
- spec/examples/1_customer_creation/customer_spec.rb
|
|
365
|
-
- spec/examples/2_with_customer/budget_spec.rb
|
|
366
|
-
- spec/examples/2_with_customer/campaigns_spec.rb
|
|
367
|
-
- spec/examples/2_with_customer/customer_management_spec.rb
|
|
368
|
-
- spec/examples/2_with_customer/uet_tags_spec.rb
|
|
369
|
-
- spec/examples/3_with_uet_tag/conversion_goal_spec.rb
|
|
370
|
-
- spec/examples/3_with_uet_tag/uet_tags_spec.rb
|
|
371
|
-
- spec/examples/4_with_conversion_goal/conversion_goals_spec.rb
|
|
372
|
-
- spec/examples/5_with_campaign/ad_extension_spec.rb
|
|
373
|
-
- spec/examples/5_with_campaign/ad_group_spec.rb
|
|
374
|
-
- spec/examples/5_with_campaign/campaign_criterions_spec.rb
|
|
375
|
-
- spec/examples/5_with_campaign/campaign_spec.rb
|
|
376
|
-
- spec/examples/6_with_ad_group/ad_group_spec.rb
|
|
377
|
-
- spec/examples/6_with_ad_group/ads_spec.rb
|
|
378
|
-
- spec/examples/6_with_ad_group/keywords_spec.rb
|
|
379
|
-
- spec/examples/examples.rb
|
|
380
|
-
- spec/fixtures/bulk/download_campaigns_by_account_ids/standard.xml
|
|
381
|
-
- spec/fixtures/bulk/download_campaigns_by_account_ids/standard_response.xml
|
|
382
|
-
- spec/fixtures/bulk/get_bulk_download_status/standard.xml
|
|
383
|
-
- spec/fixtures/bulk/get_bulk_download_status/standard_response.xml
|
|
384
|
-
- spec/fixtures/campaign_management/add_ad_extensions/standard.xml
|
|
385
|
-
- spec/fixtures/campaign_management/add_ad_extensions/standard_response.xml
|
|
386
|
-
- spec/fixtures/campaign_management/add_conversion_goals/standard.xml
|
|
387
|
-
- spec/fixtures/campaign_management/add_conversion_goals/standard_response.xml
|
|
388
|
-
- spec/fixtures/campaign_management/add_shared_entity/standard.xml
|
|
389
|
-
- spec/fixtures/campaign_management/add_shared_entity/standard_response.xml
|
|
390
|
-
- spec/fixtures/campaign_management/add_uet_tags/standard.xml
|
|
391
|
-
- spec/fixtures/campaign_management/add_uet_tags/standard_response.xml
|
|
392
|
-
- spec/fixtures/campaign_management/get_ad_extension_ids_by_account_id/standard.xml
|
|
393
|
-
- spec/fixtures/campaign_management/get_ad_extension_ids_by_account_id/standard_response.xml
|
|
394
|
-
- spec/fixtures/campaign_management/get_ad_extensions_associations/standard.xml
|
|
395
|
-
- spec/fixtures/campaign_management/get_ad_extensions_associations/standard_response.xml
|
|
396
|
-
- spec/fixtures/campaign_management/get_budgets_by_ids/standard.xml
|
|
397
|
-
- spec/fixtures/campaign_management/get_budgets_by_ids/standard_response.xml
|
|
398
|
-
- spec/fixtures/campaign_management/get_campaigns_by_account_id/standard.xml
|
|
399
|
-
- spec/fixtures/campaign_management/get_campaigns_by_account_id/standard_response.xml
|
|
400
|
-
- spec/fixtures/campaign_management/get_conversion_goals_by_ids/standard.xml
|
|
401
|
-
- spec/fixtures/campaign_management/get_conversion_goals_by_ids/standard_response.xml
|
|
402
|
-
- spec/fixtures/campaign_management/get_shared_entities_by_account_id/standard.xml
|
|
403
|
-
- spec/fixtures/campaign_management/get_shared_entities_by_account_id/standard_response.xml
|
|
404
|
-
- spec/fixtures/campaign_management/get_shared_entity_associations_by_entity_ids/standard.xml
|
|
405
|
-
- spec/fixtures/campaign_management/get_shared_entity_associations_by_entity_ids/standard_response.xml
|
|
406
|
-
- spec/fixtures/campaign_management/get_uet_tags_by_ids/standard.xml
|
|
407
|
-
- spec/fixtures/campaign_management/get_uet_tags_by_ids/standard_response.xml
|
|
408
|
-
- spec/fixtures/campaign_management/set_ad_extensions_associations/standard.xml
|
|
409
|
-
- spec/fixtures/campaign_management/set_ad_extensions_associations/standard_response.xml
|
|
410
|
-
- spec/fixtures/campaign_management/set_shared_entity_associations/standard.xml
|
|
411
|
-
- spec/fixtures/campaign_management/set_shared_entity_associations/standard_response.xml
|
|
412
|
-
- spec/fixtures/campaign_management/update_conversion_goals/standard.xml
|
|
413
|
-
- spec/fixtures/campaign_management/update_conversion_goals/standard_response.xml
|
|
414
|
-
- spec/fixtures/campaign_management/update_uet_tags/standard.xml
|
|
415
|
-
- spec/fixtures/campaign_management/update_uet_tags/standard_response.xml
|
|
416
|
-
- spec/fixtures/customer_management/find_accounts_or_customers_info/standard.xml
|
|
417
|
-
- spec/fixtures/customer_management/find_accounts_or_customers_info/standard_response.xml
|
|
418
|
-
- spec/fixtures/customer_management/get_account/standard.xml
|
|
419
|
-
- spec/fixtures/customer_management/get_account/standard_response.xml
|
|
420
|
-
- spec/fixtures/customer_management/signup_customer/standard.xml
|
|
421
|
-
- spec/fixtures/customer_management/signup_customer/standard_response.xml
|
|
422
|
-
- spec/fixtures/customer_management/update_account/standard.xml
|
|
423
|
-
- spec/fixtures/customer_management/update_account/standard_response.xml
|
|
424
|
-
- spec/spec_helper.rb
|
|
425
|
-
- spec/support/spec_helpers.rb
|
|
349
|
+
test_files: []
|
data/.github/stale.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# https://probot.github.io/apps/stale/
|
|
2
|
-
|
|
3
|
-
# Number of days of inactivity before an issue becomes stale
|
|
4
|
-
daysUntilStale: 30
|
|
5
|
-
# Number of days of inactivity before a stale issue is closed
|
|
6
|
-
daysUntilClose: 15
|
|
7
|
-
# Issues with these labels will never be considered stale
|
|
8
|
-
exemptLabels:
|
|
9
|
-
- keep
|
|
10
|
-
# Label to use when marking an issue as stale
|
|
11
|
-
staleLabel: autotag_Stale
|
|
12
|
-
# Comment to post when marking an issue as stale. Set to `false` to disable
|
|
13
|
-
markComment: >
|
|
14
|
-
This issue has been automatically marked as stale because it has not had
|
|
15
|
-
recent activity. It will be closed shortly if no further activity occurs. Thank you
|
|
16
|
-
for your contributions.
|
|
17
|
-
# Comment to post when closing a stale issue. Set to `false` to disable
|
|
18
|
-
closeComment: >
|
|
19
|
-
Closed automatically due to inactivity.
|