soapy_cake 1.6.9 → 1.7.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.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/api_versions.yml +2 -1
  3. data/lib/soapy_cake/admin.rb +2 -4
  4. data/lib/soapy_cake/admin_track.rb +21 -0
  5. data/lib/soapy_cake/request.rb +1 -1
  6. data/lib/soapy_cake/version.rb +1 -1
  7. data/lib/soapy_cake.rb +1 -0
  8. data/spec/fixtures/vcr_cassettes/{Integration_test → SoapyCake_Admin}/raises_if_there_is_an_error.yml +0 -0
  9. data/spec/fixtures/vcr_cassettes/{Integration_test → SoapyCake_Admin}/returns_a_clicks_report_with_a_defined_time_range.yml +0 -0
  10. data/spec/fixtures/vcr_cassettes/{Integration_test → SoapyCake_Admin}/returns_an_affiliate_with_correct_data_types.yml +0 -0
  11. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/affiliates/edits_affiliates.yml +0 -0
  12. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/geo_targeting/creates_geo_targetings.yml +0 -0
  13. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/offer_/_offer_contract_caps/removes_a_cap_for_an_offer_contract.yml +0 -0
  14. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/offer_/_offer_contract_caps/updates_a_cap_for_an_offer_contract.yml +0 -0
  15. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/offer_contracts/creates_an_offer_contract.yml +0 -0
  16. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/offer_contracts/updates_an_offer_contract.yml +0 -0
  17. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/offer_tiers/adds_an_offer_tier.yml +0 -0
  18. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/offers/creates_an_offer.yml +0 -0
  19. data/spec/fixtures/vcr_cassettes/{ADDEDIT_integration_test → SoapyCake_AdminAddedit}/offers/updates_an_offer.yml +0 -0
  20. data/spec/fixtures/vcr_cassettes/SoapyCake_AdminTrack/_mass_conversion_insert/insers_conversions.yml +54 -0
  21. data/spec/{lib/soapy_cake/addedit_integration_spec.rb → integration/soapy_cake/admin_addedit_spec.rb} +1 -3
  22. data/spec/{lib/soapy_cake/integration_spec.rb → integration/soapy_cake/admin_spec.rb} +4 -4
  23. data/spec/integration/soapy_cake/admin_track_spec.rb +27 -0
  24. data/spec/lib/soapy_cake/admin_spec.rb +0 -20
  25. data/spec/lib/soapy_cake/admin_track_spec.rb +12 -0
  26. data/spec/spec_helper.rb +2 -0
  27. data/spec/support/admin_method_example.rb +10 -0
  28. metadata +40 -31
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 546f6db4ccf5d567c3eebf8b789bd93d4bc4799c
4
- data.tar.gz: 7b3794d3dd0117155a75b3da0143bb6802b35d58
3
+ metadata.gz: 7eea19c2388dc1e422ca91bc48ab0b35abf5183f
4
+ data.tar.gz: 4b9ece74aa02f1e16b7297ce3c7134e70bbdf3e3
5
5
  SHA512:
6
- metadata.gz: 59d337eaf389a424d31da5e400009d636bfc7f8c9ea8361478c95be6f9cbdc1debbc7fc6cb196644a0cc33f0695b285785753550e9db7815f4221478b4b08da2
7
- data.tar.gz: 3759564da7cb064f8a4202dffb34cf0a2ce0d5bbbe3b7d3679e679803625ab4f547ee411871e9a5832d40f8f4fb8590b92980c686b34134b3a45bb8e171702d4
6
+ metadata.gz: e1fa623c4a902904656667f0b48b9531ea4244adc855e709875dc62607e528295b42c2eff23abb2b71738f0c4eedd63e430bf293558c74c40e4140aaa8a0650f
7
+ data.tar.gz: 7e76731726a781d5f57a26cbfefbd77073d356f49dee5333c032308c70033485ab2fb77fd0d5b22016d4ceeda60cbdb76cecf8b52e348af50e88c44d0298fd9d
data/api_versions.yml CHANGED
@@ -95,7 +95,8 @@ admin:
95
95
  conversion_dispositions: 2
96
96
  decrypt_affiliate_link: 1
97
97
  mass_conversion_adjustment: 2
98
- mass_conversion_insert: 2
98
+ # Version 2 returns an error about an invalid action, so using version 1
99
+ mass_conversion_insert: 1
99
100
  rejected_dispositions: 1
100
101
  update_conversion: 2
101
102
  update_conversion_disposition: 2
@@ -1,5 +1,7 @@
1
1
  module SoapyCake
2
2
  class Admin < Client
3
+ include Helper
4
+
3
5
  def affiliate_bills(opts = {})
4
6
  run Request.new(:admin, :accounting, :export_affiliate_bills, opts)
5
7
  end
@@ -100,10 +102,6 @@ module SoapyCake
100
102
  run Request.new(:admin, :signup, :affiliate, opts)
101
103
  end
102
104
 
103
- def decrypt_affiliate_link(opts = {})
104
- run Request.new(:admin, :track, :decrypt_affiliate_link, opts)
105
- end
106
-
107
105
  def verticals(*)
108
106
  run Request.new(:admin, :get, :verticals, {})
109
107
  end
@@ -0,0 +1,21 @@
1
+ module SoapyCake
2
+ class AdminTrack < Client
3
+ include Helper
4
+
5
+ def mass_conversion_insert(opts)
6
+ require_params(
7
+ opts,
8
+ %i(
9
+ conversion_date affiliate_id sub_affiliate
10
+ campaign_id creative_id total_to_insert
11
+ )
12
+ )
13
+
14
+ run Request.new(:admin, :track, :mass_conversion_insert, opts)
15
+ end
16
+
17
+ def decrypt_affiliate_link(opts = {})
18
+ run Request.new(:admin, :track, :decrypt_affiliate_link, opts)
19
+ end
20
+ end
21
+ end
@@ -34,7 +34,7 @@ module SoapyCake
34
34
  private
35
35
 
36
36
  def api_path
37
- "#{(role != 'admin') ? "/#{role.pluralize}" : ''}/api/#{version}"
37
+ "#{(role == 'admin') ? '' : "/#{role.pluralize}"}/api/#{version}"
38
38
  end
39
39
 
40
40
  def xml_params(xml)
@@ -1,3 +1,3 @@
1
1
  module SoapyCake
2
- VERSION = '1.6.9'
2
+ VERSION = '1.7.0'
3
3
  end
data/lib/soapy_cake.rb CHANGED
@@ -15,6 +15,7 @@ require 'soapy_cake/response'
15
15
  require 'soapy_cake/client'
16
16
  require 'soapy_cake/admin'
17
17
  require 'soapy_cake/admin_addedit'
18
+ require 'soapy_cake/admin_track'
18
19
  require 'soapy_cake/affiliate'
19
20
 
20
21
  module SoapyCake
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://cake-partner-domain.com/api/1/track.asmx
6
+ body:
7
+ encoding: UTF-8
8
+ string: |
9
+ <?xml version="1.0"?>
10
+ <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:cake="http://cakemarketing.com/api/1/">
11
+ <env:Header/>
12
+ <env:Body>
13
+ <cake:MassConversionInsert>
14
+ <cake:api_key>cake-api-key</cake:api_key>
15
+ <cake:conversion_date>2015-05-06T01:00:00</cake:conversion_date>
16
+ <cake:affiliate_id>16059</cake:affiliate_id>
17
+ <cake:campaign_id>13268</cake:campaign_id>
18
+ <cake:sub_affiliate/>
19
+ <cake:creative_id>5521</cake:creative_id>
20
+ <cake:total_to_insert>12</cake:total_to_insert>
21
+ </cake:MassConversionInsert>
22
+ </env:Body>
23
+ </env:Envelope>
24
+ headers:
25
+ Content-Type:
26
+ - application/soap+xml;charset=UTF-8
27
+ response:
28
+ status:
29
+ code: 200
30
+ message: OK
31
+ headers:
32
+ Cache-Control:
33
+ - private, max-age=0
34
+ Content-Type:
35
+ - application/soap+xml; charset=utf-8
36
+ Server:
37
+ - Microsoft-IIS/8.0
38
+ X-Aspnet-Version:
39
+ - 4.0.30319
40
+ X-Powered-By:
41
+ - ASP.NET
42
+ Date:
43
+ - Wed, 06 May 2015 12:35:51 GMT
44
+ Content-Length:
45
+ - '464'
46
+ body:
47
+ encoding: UTF-8
48
+ string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
49
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><MassConversionInsertResponse
50
+ xmlns="http://cakemarketing.com/api/1/"><MassConversionInsertResult><success>true</success><message>Conversions
51
+ Inserted</message></MassConversionInsertResult></MassConversionInsertResponse></soap:Body></soap:Envelope>
52
+ http_version:
53
+ recorded_at: Wed, 06 May 2015 12:35:53 GMT
54
+ recorded_with: VCR 2.9.3
@@ -1,6 +1,4 @@
1
- RSpec.describe 'ADDEDIT integration test' do
2
- subject { SoapyCake::AdminAddedit.new }
3
-
1
+ RSpec.describe SoapyCake::AdminAddedit do
4
2
  around { |example| Timecop.freeze(Time.utc(2015, 2, 17, 12), &example) }
5
3
 
6
4
  let(:advertiser_id) { 15886 }
@@ -1,6 +1,6 @@
1
- RSpec.describe 'Integration test' do
1
+ RSpec.describe SoapyCake::Admin do
2
2
  it 'returns an affiliate with correct data types', :vcr do
3
- result = SoapyCake::Admin.new.affiliates(affiliate_id: 16027)
3
+ result = subject.affiliates(affiliate_id: 16027)
4
4
  expect(result.count).to eq(1)
5
5
  expect(result.first).to include(
6
6
  affiliate_id: 16027,
@@ -25,7 +25,7 @@ RSpec.describe 'Integration test' do
25
25
  end
26
26
 
27
27
  it 'returns a clicks report with a defined time range', :vcr do
28
- result = SoapyCake::Admin.new.clicks(
28
+ result = subject.clicks(
29
29
  start_date: Date.new(2014, 6, 30),
30
30
  end_date: Date.new(2014, 7, 1),
31
31
  row_limit: 1
@@ -40,7 +40,7 @@ RSpec.describe 'Integration test' do
40
40
 
41
41
  it 'raises if there is an error', :vcr do
42
42
  expect do
43
- SoapyCake::Admin.new.affiliates(affiliate_id: 'bloops')
43
+ subject.affiliates(affiliate_id: 'bloops')
44
44
  end.to raise_error(SoapyCake::RequestFailed)
45
45
  end
46
46
  end
@@ -0,0 +1,27 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe SoapyCake::AdminTrack do
4
+ describe '#decrypt_affiliate_link' do
5
+ let(:service) { :track }
6
+ let(:cake_method) { :decrypt_affiliate_link }
7
+ let(:method) { :decrypt_affiliate_link }
8
+ let(:cake_opts) { { a: 1 } }
9
+
10
+ it_behaves_like 'a cake admin method'
11
+ end
12
+
13
+ describe '#mass_conversion_insert', :vcr do
14
+ it 'insers conversions' do
15
+ result = subject.mass_conversion_insert(
16
+ conversion_date: Date.new(2015, 5, 6),
17
+ affiliate_id: 16059,
18
+ campaign_id: 13268,
19
+ sub_affiliate: '',
20
+ creative_id: 5521,
21
+ total_to_insert: 12
22
+ )
23
+
24
+ expect(result).to eq(success: true, message: 'Conversions Inserted')
25
+ end
26
+ end
27
+ end
@@ -3,17 +3,6 @@ RSpec.describe SoapyCake::Admin do
3
3
  let(:cake_opts) { opts }
4
4
  let(:cake_method) { method }
5
5
 
6
- shared_examples_for 'a cake admin method' do
7
- it 'runs the request' do
8
- request = double('request')
9
- expect(SoapyCake::Request).to receive(:new)
10
- .with(:admin, service, cake_method, cake_opts).and_return(request)
11
- expect(subject).to receive(:run).with(request)
12
-
13
- subject.public_send(method, opts)
14
- end
15
- end
16
-
17
6
  describe 'accounting service' do
18
7
  let(:service) { :accounting }
19
8
 
@@ -193,13 +182,4 @@ RSpec.describe SoapyCake::Admin do
193
182
  it_behaves_like 'a cake admin method'
194
183
  end
195
184
  end
196
-
197
- describe 'track service' do
198
- let(:service) { :track }
199
-
200
- describe '#decrypt_affiliate_link' do
201
- let(:method) { :decrypt_affiliate_link }
202
- it_behaves_like 'a cake admin method'
203
- end
204
- end
205
185
  end
@@ -0,0 +1,12 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe SoapyCake::AdminTrack do
4
+ describe '#decrypt_affiliate_link' do
5
+ let(:service) { :track }
6
+ let(:cake_method) { :decrypt_affiliate_link }
7
+ let(:method) { :decrypt_affiliate_link }
8
+ let(:cake_opts) { { a: 1 } }
9
+
10
+ it_behaves_like 'a cake admin method'
11
+ end
12
+ end
data/spec/spec_helper.rb CHANGED
@@ -4,6 +4,8 @@ require 'bundler/setup'
4
4
  Bundler.require(:default, :development)
5
5
  require 'soapy_cake'
6
6
 
7
+ Dir['./spec/support/**/*.rb'].sort.each { |f| require f }
8
+
7
9
  # This file was generated by the `rspec --init` command. Conventionally, all
8
10
  # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
9
11
  # Require this file using `require "spec_helper"` to ensure that it is only
@@ -0,0 +1,10 @@
1
+ RSpec.shared_examples_for 'a cake admin method' do
2
+ it 'runs the request' do
3
+ request = double('request')
4
+ expect(SoapyCake::Request).to receive(:new)
5
+ .with(:admin, service, cake_method, cake_opts).and_return(request)
6
+ expect(subject).to receive(:run).with(request)
7
+
8
+ subject.public_send(method, cake_opts)
9
+ end
10
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soapy_cake
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.9
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ad2games GmbH
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-05 00:00:00.000000000 Z
11
+ date: 2015-05-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -183,6 +183,7 @@ files:
183
183
  - lib/soapy_cake.rb
184
184
  - lib/soapy_cake/admin.rb
185
185
  - lib/soapy_cake/admin_addedit.rb
186
+ - lib/soapy_cake/admin_track.rb
186
187
  - lib/soapy_cake/affiliate.rb
187
188
  - lib/soapy_cake/client.rb
188
189
  - lib/soapy_cake/const.rb
@@ -192,24 +193,28 @@ files:
192
193
  - lib/soapy_cake/response.rb
193
194
  - lib/soapy_cake/version.rb
194
195
  - soapy_cake.gemspec
195
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/affiliates/edits_affiliates.yml
196
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/geo_targeting/creates_geo_targetings.yml
197
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_/_offer_contract_caps/removes_a_cap_for_an_offer_contract.yml
198
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_/_offer_contract_caps/updates_a_cap_for_an_offer_contract.yml
199
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_contracts/creates_an_offer_contract.yml
200
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_contracts/updates_an_offer_contract.yml
201
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_tiers/adds_an_offer_tier.yml
202
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offers/creates_an_offer.yml
203
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offers/updates_an_offer.yml
204
- - spec/fixtures/vcr_cassettes/Integration_test/raises_if_there_is_an_error.yml
205
- - spec/fixtures/vcr_cassettes/Integration_test/returns_a_clicks_report_with_a_defined_time_range.yml
206
- - spec/fixtures/vcr_cassettes/Integration_test/returns_an_affiliate_with_correct_data_types.yml
207
- - spec/lib/soapy_cake/addedit_integration_spec.rb
196
+ - spec/fixtures/vcr_cassettes/SoapyCake_Admin/raises_if_there_is_an_error.yml
197
+ - spec/fixtures/vcr_cassettes/SoapyCake_Admin/returns_a_clicks_report_with_a_defined_time_range.yml
198
+ - spec/fixtures/vcr_cassettes/SoapyCake_Admin/returns_an_affiliate_with_correct_data_types.yml
199
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/affiliates/edits_affiliates.yml
200
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/geo_targeting/creates_geo_targetings.yml
201
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_/_offer_contract_caps/removes_a_cap_for_an_offer_contract.yml
202
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_/_offer_contract_caps/updates_a_cap_for_an_offer_contract.yml
203
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_contracts/creates_an_offer_contract.yml
204
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_contracts/updates_an_offer_contract.yml
205
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_tiers/adds_an_offer_tier.yml
206
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offers/creates_an_offer.yml
207
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offers/updates_an_offer.yml
208
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminTrack/_mass_conversion_insert/insers_conversions.yml
209
+ - spec/integration/soapy_cake/admin_addedit_spec.rb
210
+ - spec/integration/soapy_cake/admin_spec.rb
211
+ - spec/integration/soapy_cake/admin_track_spec.rb
208
212
  - spec/lib/soapy_cake/admin_spec.rb
213
+ - spec/lib/soapy_cake/admin_track_spec.rb
209
214
  - spec/lib/soapy_cake/affiliate_spec.rb
210
- - spec/lib/soapy_cake/integration_spec.rb
211
215
  - spec/lib/soapy_cake/request_spec.rb
212
216
  - spec/spec_helper.rb
217
+ - spec/support/admin_method_example.rb
213
218
  homepage: http://ad2games.com
214
219
  licenses:
215
220
  - MIT
@@ -230,26 +235,30 @@ required_rubygems_version: !ruby/object:Gem::Requirement
230
235
  version: '0'
231
236
  requirements: []
232
237
  rubyforge_project:
233
- rubygems_version: 2.4.5
238
+ rubygems_version: 2.4.6
234
239
  signing_key:
235
240
  specification_version: 4
236
241
  summary: Simple client for the CAKE API
237
242
  test_files:
238
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/affiliates/edits_affiliates.yml
239
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/geo_targeting/creates_geo_targetings.yml
240
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_/_offer_contract_caps/removes_a_cap_for_an_offer_contract.yml
241
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_/_offer_contract_caps/updates_a_cap_for_an_offer_contract.yml
242
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_contracts/creates_an_offer_contract.yml
243
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_contracts/updates_an_offer_contract.yml
244
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offer_tiers/adds_an_offer_tier.yml
245
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offers/creates_an_offer.yml
246
- - spec/fixtures/vcr_cassettes/ADDEDIT_integration_test/offers/updates_an_offer.yml
247
- - spec/fixtures/vcr_cassettes/Integration_test/raises_if_there_is_an_error.yml
248
- - spec/fixtures/vcr_cassettes/Integration_test/returns_a_clicks_report_with_a_defined_time_range.yml
249
- - spec/fixtures/vcr_cassettes/Integration_test/returns_an_affiliate_with_correct_data_types.yml
250
- - spec/lib/soapy_cake/addedit_integration_spec.rb
243
+ - spec/fixtures/vcr_cassettes/SoapyCake_Admin/raises_if_there_is_an_error.yml
244
+ - spec/fixtures/vcr_cassettes/SoapyCake_Admin/returns_a_clicks_report_with_a_defined_time_range.yml
245
+ - spec/fixtures/vcr_cassettes/SoapyCake_Admin/returns_an_affiliate_with_correct_data_types.yml
246
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/affiliates/edits_affiliates.yml
247
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/geo_targeting/creates_geo_targetings.yml
248
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_/_offer_contract_caps/removes_a_cap_for_an_offer_contract.yml
249
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_/_offer_contract_caps/updates_a_cap_for_an_offer_contract.yml
250
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_contracts/creates_an_offer_contract.yml
251
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_contracts/updates_an_offer_contract.yml
252
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offer_tiers/adds_an_offer_tier.yml
253
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offers/creates_an_offer.yml
254
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminAddedit/offers/updates_an_offer.yml
255
+ - spec/fixtures/vcr_cassettes/SoapyCake_AdminTrack/_mass_conversion_insert/insers_conversions.yml
256
+ - spec/integration/soapy_cake/admin_addedit_spec.rb
257
+ - spec/integration/soapy_cake/admin_spec.rb
258
+ - spec/integration/soapy_cake/admin_track_spec.rb
251
259
  - spec/lib/soapy_cake/admin_spec.rb
260
+ - spec/lib/soapy_cake/admin_track_spec.rb
252
261
  - spec/lib/soapy_cake/affiliate_spec.rb
253
- - spec/lib/soapy_cake/integration_spec.rb
254
262
  - spec/lib/soapy_cake/request_spec.rb
255
263
  - spec/spec_helper.rb
264
+ - spec/support/admin_method_example.rb