ticketevolution-ruby 0.7.11 → 0.7.16
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.
- data/lib/ext/hash.rb +1 -0
- data/lib/faraday/localhost_header.rb +36 -0
- data/lib/ticket_evolution.rb +15 -1
- data/lib/ticket_evolution/accounts/transactions.rb +8 -0
- data/lib/ticket_evolution/address.rb +4 -0
- data/lib/ticket_evolution/clients.rb +4 -0
- data/lib/ticket_evolution/clients/addresses.rb +14 -0
- data/lib/ticket_evolution/clients/credit_cards.rb +2 -0
- data/lib/ticket_evolution/core/collection.rb +5 -3
- data/lib/ticket_evolution/core/connection.rb +3 -0
- data/lib/ticket_evolution/core/model.rb +1 -0
- data/lib/ticket_evolution/core/model/parental_behavior.rb +3 -1
- data/lib/ticket_evolution/modules/destroy.rb +1 -1
- data/lib/ticket_evolution/offices/credit_cards.rb +10 -0
- data/lib/ticket_evolution/order.rb +8 -0
- data/lib/ticket_evolution/orders.rb +27 -0
- data/lib/ticket_evolution/orders/payments.rb +8 -0
- data/lib/ticket_evolution/payment.rb +4 -0
- data/lib/ticket_evolution/service_fee.rb +4 -0
- data/lib/ticket_evolution/settings.rb +42 -0
- data/lib/ticket_evolution/shipping_setting.rb +4 -0
- data/lib/ticket_evolution/taken_ticket.rb +4 -0
- data/lib/ticket_evolution/{transactions.rb → taken_tickets.rb} +1 -2
- data/lib/ticket_evolution/ticket_group.rb +15 -0
- data/lib/ticket_evolution/ticket_groups.rb +30 -0
- data/lib/ticket_evolution/ticket_groups/ticket_holds.rb +7 -0
- data/lib/ticket_evolution/ticket_hold.rb +4 -0
- data/lib/ticket_evolution/version.rb +1 -1
- data/spec/fixtures/fake.rb +30 -0
- data/spec/fixtures/net/endpoints/settings.yml +80 -0
- data/spec/fixtures/net/endpoints/settings_service_fees.yml +41 -0
- data/spec/lib/ext/hash_spec.rb +9 -0
- data/spec/lib/faraday/localhost_header_spec.rb +61 -0
- data/spec/lib/ticket_evolution/{transactions_spec.rb → accounts/transactions_spec.rb} +2 -2
- data/spec/lib/ticket_evolution/clients/addresses_spec.rb +13 -0
- data/spec/lib/ticket_evolution/clients_spec.rb +11 -0
- data/spec/lib/ticket_evolution/core/collection_spec.rb +79 -29
- data/spec/lib/ticket_evolution/core/model_spec.rb +6 -0
- data/spec/lib/ticket_evolution/offices/credit_cards_spec.rb +12 -0
- data/spec/lib/ticket_evolution/orders/payments_spec.rb +10 -0
- data/spec/lib/ticket_evolution/orders_spec.rb +11 -0
- data/spec/lib/ticket_evolution/payment_spec.rb +7 -0
- data/spec/lib/ticket_evolution/service_fee_spec.rb +7 -0
- data/spec/lib/ticket_evolution/settings_spec.rb +32 -0
- data/spec/lib/ticket_evolution/shipping_setting_spec.rb +7 -0
- data/spec/lib/ticket_evolution/taken_tickets_spec.rb +12 -0
- data/spec/lib/ticket_evolution/ticket_group_spec.rb +41 -0
- data/spec/lib/ticket_evolution/ticket_groups/ticket_holds_spec.rb +9 -0
- data/spec/lib/ticket_evolution/ticket_groups_spec.rb +45 -0
- data/spec/lib/ticket_evolution/ticket_hold_spec.rb +7 -0
- data/spec/shared_examples/endpoints/destroy.rb +0 -1
- metadata +61 -26
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TicketEvolution::Offices::CreditCards do
|
4
|
+
let(:klass) { TicketEvolution::Offices::CreditCards }
|
5
|
+
let(:single_klass) { TicketEvolution::CreditCard }
|
6
|
+
let(:update_base) { { 'url' => '/offices/1/credit_cards/1' } }
|
7
|
+
|
8
|
+
it_behaves_like 'a ticket_evolution endpoint class'
|
9
|
+
it_behaves_like 'a create endpoint'
|
10
|
+
it_behaves_like 'a list endpoint'
|
11
|
+
it_behaves_like 'an update endpoint'
|
12
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TicketEvolution::Orders::Payments do
|
4
|
+
let(:klass) { TicketEvolution::Orders::Payments }
|
5
|
+
let(:single_klass) { TicketEvolution::Payment }
|
6
|
+
|
7
|
+
it_behaves_like 'a ticket_evolution endpoint class'
|
8
|
+
it_behaves_like 'a create endpoint'
|
9
|
+
it_behaves_like 'a list endpoint'
|
10
|
+
end
|
@@ -120,4 +120,15 @@ describe TicketEvolution::Orders do
|
|
120
120
|
end
|
121
121
|
end
|
122
122
|
end
|
123
|
+
|
124
|
+
describe "#balance" do
|
125
|
+
context "with params" do
|
126
|
+
let(:params) { {'some' => {'order' => 'info'}} }
|
127
|
+
|
128
|
+
it "should pass call request as a GET, passing params" do
|
129
|
+
instance.should_receive(:request).with(:GET, "/balance", params)
|
130
|
+
instance.balance(params)
|
131
|
+
end
|
132
|
+
end
|
133
|
+
end
|
123
134
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TicketEvolution::Settings do
|
4
|
+
let(:klass) { TicketEvolution::Settings }
|
5
|
+
let(:single_klass) { TicketEvolution::ShippingSetting }
|
6
|
+
|
7
|
+
it_behaves_like 'a ticket_evolution endpoint class'
|
8
|
+
|
9
|
+
context "shipping integration tests" do
|
10
|
+
use_vcr_cassette "endpoints/settings", :record => :new_episodes
|
11
|
+
|
12
|
+
it "returns a list of results for shipping action" do
|
13
|
+
search_results = connection.settings.shipping()
|
14
|
+
|
15
|
+
search_results.each do |result|
|
16
|
+
result.should be_a TicketEvolution::Model
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
context "service_fees integration tests" do
|
22
|
+
use_vcr_cassette "endpoints/settings_service_fees", :record => :new_episodes
|
23
|
+
|
24
|
+
it "returns a list of results for service_fees action" do
|
25
|
+
search_results = connection.settings.service_fees()
|
26
|
+
|
27
|
+
search_results.each do |result|
|
28
|
+
result.should be_a TicketEvolution::Model
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TicketEvolution::TakenTickets do
|
4
|
+
|
5
|
+
let(:klass) { TicketEvolution::TakenTickets }
|
6
|
+
let(:single_klass) { TicketEvolution::TakenTicket }
|
7
|
+
let(:instance) { klass.new({:parent => Fake.connection}) }
|
8
|
+
|
9
|
+
it_behaves_like 'a ticket_evolution endpoint class'
|
10
|
+
it_behaves_like 'a list endpoint'
|
11
|
+
|
12
|
+
end
|
@@ -2,6 +2,47 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
describe TicketEvolution::TicketGroup do
|
4
4
|
subject { TicketEvolution::TicketGroup }
|
5
|
+
let(:klass) { TicketEvolution::TicketGroup }
|
6
|
+
let(:connection) { Fake.connection }
|
7
|
+
let(:instance) { klass.new({:connection => connection, 'id' => 1}) }
|
8
|
+
let(:params) { {:test => "1... 2... 3..."} }
|
9
|
+
let(:plural_klass) { TicketEvolution::TicketGroups }
|
10
|
+
let!(:plural_klass_instance) { plural_klass.new(:parent => connection) }
|
5
11
|
|
6
12
|
it_behaves_like "a ticket_evolution model"
|
13
|
+
|
14
|
+
describe "#hold" do
|
15
|
+
before do
|
16
|
+
plural_klass.should_receive(:new).with(:parent => connection, :id => instance.id).and_return(plural_klass_instance)
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should pass the request to TicketEvolution::TicketGroups#hold" do
|
20
|
+
plural_klass_instance.should_receive(:hold).with(params).and_return(:dont_care)
|
21
|
+
instance.hold(params)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
describe "#release_hold" do
|
26
|
+
|
27
|
+
before do
|
28
|
+
plural_klass.should_receive(:new).with(:parent => connection, :id => instance.id).and_return(plural_klass_instance)
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should pass the request to TicketEvolution::TicketGroups#release_hold" do
|
32
|
+
plural_klass_instance.should_receive(:release_hold).with({ :ticket_hold_id => 1 }).and_return(:dont_care)
|
33
|
+
instance.release_hold({ :ticket_hold_id => 1 })
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe "#take" do
|
38
|
+
before do
|
39
|
+
plural_klass.should_receive(:new).with(:parent => connection, :id => instance.id).and_return(plural_klass_instance)
|
40
|
+
end
|
41
|
+
|
42
|
+
it "should pass the request to TicketEvolution::TicketGroups#take" do
|
43
|
+
plural_klass_instance.should_receive(:take).with(params).and_return(:dont_care)
|
44
|
+
instance.take(params)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
7
48
|
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TicketEvolution::TicketGroups::TicketHolds do
|
4
|
+
let(:klass) { TicketEvolution::TicketGroups::TicketHolds }
|
5
|
+
let(:single_klass) { TicketEvolution::TicketHold }
|
6
|
+
|
7
|
+
it_behaves_like 'a ticket_evolution endpoint class'
|
8
|
+
it_behaves_like 'a list endpoint'
|
9
|
+
end
|
@@ -3,12 +3,57 @@ require 'spec_helper'
|
|
3
3
|
describe TicketEvolution::TicketGroups do
|
4
4
|
let(:klass) { TicketEvolution::TicketGroups }
|
5
5
|
let(:single_klass) { TicketEvolution::TicketGroup }
|
6
|
+
let(:update_base) { {'url' => '/ticket_groups/1'} }
|
6
7
|
|
7
8
|
it_behaves_like 'a ticket_evolution endpoint class'
|
8
9
|
it_behaves_like 'a list endpoint'
|
9
10
|
it_behaves_like 'a show endpoint'
|
11
|
+
it_behaves_like 'an update endpoint'
|
10
12
|
|
11
13
|
it "should have a base path of /ticket_groups" do
|
12
14
|
klass.new({:parent => Fake.connection}).base_path.should == '/ticket_groups'
|
13
15
|
end
|
16
|
+
|
17
|
+
context "integration tests" do
|
18
|
+
let(:instance) { klass.new({:parent => connection}) }
|
19
|
+
|
20
|
+
describe "hold" do
|
21
|
+
let(:instance) { klass.new({ :parent => connection, :id => 1 }) }
|
22
|
+
use_vcr_cassette "ticket_groups/hold"
|
23
|
+
|
24
|
+
it "places a ticket_group's specified tickets on hold" do
|
25
|
+
instance.should_receive(:request).with(:POST, "/hold", { :low_seat => 10 })
|
26
|
+
instance.hold({ :low_seat => 10 })
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe "take" do
|
31
|
+
let(:instance) { klass.new({ :parent => connection, :id => 1 }) }
|
32
|
+
use_vcr_cassette "ticket_groups/take"
|
33
|
+
|
34
|
+
it "takes a ticket_group's specified tickets" do
|
35
|
+
instance.should_receive(:request).with(:POST, "/take", { :low_seat => 10 })
|
36
|
+
instance.take({ :low_seat => 10 })
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe "release_hold" do
|
41
|
+
let(:instance) { klass.new({ :parent => connection, :id => 1 }) }
|
42
|
+
use_vcr_cassette "ticket_groups/release_hold"
|
43
|
+
|
44
|
+
it "places a ticket_group's specified tickets on release_hold" do
|
45
|
+
instance.should_receive(:request).with(:POST, "/release_hold/1", nil)
|
46
|
+
instance.release_hold({ :ticket_hold_id => 1 })
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "index_cart" do
|
51
|
+
use_vcr_cassette "ticket_groups/index_cart", :record => :new_episodes
|
52
|
+
|
53
|
+
it "returns a list of ticket_groups with ids in params[:id].split" do
|
54
|
+
instance.should_receive(:request).with(:GET, "/index_cart", '1,2')
|
55
|
+
instance.index_cart('1,2')
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
14
59
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ticketevolution-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.16
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-08-16 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
16
|
-
requirement: &
|
16
|
+
requirement: &70352735386840 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 3.0.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70352735386840
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: faraday
|
27
|
-
requirement: &
|
27
|
+
requirement: &70352735385460 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 0.7.3
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70352735385460
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: yajl-ruby
|
38
|
-
requirement: &
|
38
|
+
requirement: &70352735383360 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ! '>='
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 0.7.7
|
44
44
|
type: :runtime
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *70352735383360
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: multi_json
|
49
|
-
requirement: &
|
49
|
+
requirement: &70352735381480 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ! '>='
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 0.0.4
|
55
55
|
type: :runtime
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *70352735381480
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: nokogiri
|
60
|
-
requirement: &
|
60
|
+
requirement: &70352735380160 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ! '>='
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 1.4.3
|
66
66
|
type: :runtime
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *70352735380160
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rspec
|
71
|
-
requirement: &
|
71
|
+
requirement: &70352735372340 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ! '>='
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: 2.7.1
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *70352735372340
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: vcr
|
82
|
-
requirement: &
|
82
|
+
requirement: &70352735368700 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - <
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: '2'
|
88
88
|
type: :development
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *70352735368700
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: webmock
|
93
|
-
requirement: &
|
93
|
+
requirement: &70352735367840 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ! '>='
|
@@ -101,10 +101,10 @@ dependencies:
|
|
101
101
|
version: 1.8.0
|
102
102
|
type: :development
|
103
103
|
prerelease: false
|
104
|
-
version_requirements: *
|
104
|
+
version_requirements: *70352735367840
|
105
105
|
- !ruby/object:Gem::Dependency
|
106
106
|
name: awesome_print
|
107
|
-
requirement: &
|
107
|
+
requirement: &70352735366760 !ruby/object:Gem::Requirement
|
108
108
|
none: false
|
109
109
|
requirements:
|
110
110
|
- - ! '>='
|
@@ -112,10 +112,10 @@ dependencies:
|
|
112
112
|
version: '0'
|
113
113
|
type: :development
|
114
114
|
prerelease: false
|
115
|
-
version_requirements: *
|
115
|
+
version_requirements: *70352735366760
|
116
116
|
- !ruby/object:Gem::Dependency
|
117
117
|
name: rake
|
118
|
-
requirement: &
|
118
|
+
requirement: &70352735366140 !ruby/object:Gem::Requirement
|
119
119
|
none: false
|
120
120
|
requirements:
|
121
121
|
- - ! '>='
|
@@ -123,7 +123,7 @@ dependencies:
|
|
123
123
|
version: '0'
|
124
124
|
type: :development
|
125
125
|
prerelease: false
|
126
|
-
version_requirements: *
|
126
|
+
version_requirements: *70352735366140
|
127
127
|
description: Provides Ruby wrappers for the Ticket Evolution API (http://developer.ticketevolution.com).
|
128
128
|
Ticket Evolution is the industry leader in software for the Ticket Broker industry.
|
129
129
|
email:
|
@@ -149,10 +149,12 @@ files:
|
|
149
149
|
- lib/docs/objects.markdown
|
150
150
|
- lib/ext/faraday/utils.rb
|
151
151
|
- lib/ext/hash.rb
|
152
|
+
- lib/faraday/localhost_header.rb
|
152
153
|
- lib/faraday/response/verbose_logger.rb
|
153
154
|
- lib/ticket_evolution.rb
|
154
155
|
- lib/ticket_evolution/account.rb
|
155
156
|
- lib/ticket_evolution/accounts.rb
|
157
|
+
- lib/ticket_evolution/accounts/transactions.rb
|
156
158
|
- lib/ticket_evolution/address.rb
|
157
159
|
- lib/ticket_evolution/brokerage.rb
|
158
160
|
- lib/ticket_evolution/brokerages.rb
|
@@ -197,8 +199,11 @@ files:
|
|
197
199
|
- lib/ticket_evolution/modules/update.rb
|
198
200
|
- lib/ticket_evolution/office.rb
|
199
201
|
- lib/ticket_evolution/offices.rb
|
202
|
+
- lib/ticket_evolution/offices/credit_cards.rb
|
200
203
|
- lib/ticket_evolution/order.rb
|
201
204
|
- lib/ticket_evolution/orders.rb
|
205
|
+
- lib/ticket_evolution/orders/payments.rb
|
206
|
+
- lib/ticket_evolution/payment.rb
|
202
207
|
- lib/ticket_evolution/performer.rb
|
203
208
|
- lib/ticket_evolution/performers.rb
|
204
209
|
- lib/ticket_evolution/phone_number.rb
|
@@ -207,14 +212,20 @@ files:
|
|
207
212
|
- lib/ticket_evolution/rate_option.rb
|
208
213
|
- lib/ticket_evolution/rate_options.rb
|
209
214
|
- lib/ticket_evolution/search.rb
|
215
|
+
- lib/ticket_evolution/service_fee.rb
|
216
|
+
- lib/ticket_evolution/settings.rb
|
210
217
|
- lib/ticket_evolution/shipment.rb
|
211
218
|
- lib/ticket_evolution/shipments.rb
|
219
|
+
- lib/ticket_evolution/shipping_setting.rb
|
220
|
+
- lib/ticket_evolution/taken_ticket.rb
|
221
|
+
- lib/ticket_evolution/taken_tickets.rb
|
212
222
|
- lib/ticket_evolution/ticket_group.rb
|
213
223
|
- lib/ticket_evolution/ticket_groups.rb
|
224
|
+
- lib/ticket_evolution/ticket_groups/ticket_holds.rb
|
225
|
+
- lib/ticket_evolution/ticket_hold.rb
|
214
226
|
- lib/ticket_evolution/track_detail.rb
|
215
227
|
- lib/ticket_evolution/track_details.rb
|
216
228
|
- lib/ticket_evolution/transaction.rb
|
217
|
-
- lib/ticket_evolution/transactions.rb
|
218
229
|
- lib/ticket_evolution/user.rb
|
219
230
|
- lib/ticket_evolution/users.rb
|
220
231
|
- lib/ticket_evolution/venue.rb
|
@@ -234,9 +245,13 @@ files:
|
|
234
245
|
- spec/fixtures/net/endpoints/company/destroy_error.yml
|
235
246
|
- spec/fixtures/net/endpoints/company/destroy_success.yml
|
236
247
|
- spec/fixtures/net/endpoints/search.yml
|
248
|
+
- spec/fixtures/net/endpoints/settings.yml
|
249
|
+
- spec/fixtures/net/endpoints/settings_service_fees.yml
|
237
250
|
- spec/fixtures/net/endpoints/track_details/show.yml
|
238
251
|
- spec/lib/ext/hash_spec.rb
|
252
|
+
- spec/lib/faraday/localhost_header_spec.rb
|
239
253
|
- spec/lib/ticket_evolution/account_spec.rb
|
254
|
+
- spec/lib/ticket_evolution/accounts/transactions_spec.rb
|
240
255
|
- spec/lib/ticket_evolution/accounts_spec.rb
|
241
256
|
- spec/lib/ticket_evolution/address_spec.rb
|
242
257
|
- spec/lib/ticket_evolution/brokerage_spec.rb
|
@@ -271,9 +286,12 @@ files:
|
|
271
286
|
- spec/lib/ticket_evolution/event_spec.rb
|
272
287
|
- spec/lib/ticket_evolution/events_spec.rb
|
273
288
|
- spec/lib/ticket_evolution/office_spec.rb
|
289
|
+
- spec/lib/ticket_evolution/offices/credit_cards_spec.rb
|
274
290
|
- spec/lib/ticket_evolution/offices_spec.rb
|
275
291
|
- spec/lib/ticket_evolution/order_spec.rb
|
292
|
+
- spec/lib/ticket_evolution/orders/payments_spec.rb
|
276
293
|
- spec/lib/ticket_evolution/orders_spec.rb
|
294
|
+
- spec/lib/ticket_evolution/payment_spec.rb
|
277
295
|
- spec/lib/ticket_evolution/performer_spec.rb
|
278
296
|
- spec/lib/ticket_evolution/performers_spec.rb
|
279
297
|
- spec/lib/ticket_evolution/phone_number_spec.rb
|
@@ -282,14 +300,19 @@ files:
|
|
282
300
|
- spec/lib/ticket_evolution/rate_option_spec.rb
|
283
301
|
- spec/lib/ticket_evolution/rate_options_spec.rb
|
284
302
|
- spec/lib/ticket_evolution/search_spec.rb
|
303
|
+
- spec/lib/ticket_evolution/service_fee_spec.rb
|
304
|
+
- spec/lib/ticket_evolution/settings_spec.rb
|
285
305
|
- spec/lib/ticket_evolution/shipment_spec.rb
|
286
306
|
- spec/lib/ticket_evolution/shipments_spec.rb
|
307
|
+
- spec/lib/ticket_evolution/shipping_setting_spec.rb
|
308
|
+
- spec/lib/ticket_evolution/taken_tickets_spec.rb
|
287
309
|
- spec/lib/ticket_evolution/ticket_group_spec.rb
|
310
|
+
- spec/lib/ticket_evolution/ticket_groups/ticket_holds_spec.rb
|
288
311
|
- spec/lib/ticket_evolution/ticket_groups_spec.rb
|
312
|
+
- spec/lib/ticket_evolution/ticket_hold_spec.rb
|
289
313
|
- spec/lib/ticket_evolution/track_detail_spec.rb
|
290
314
|
- spec/lib/ticket_evolution/track_details_spec.rb
|
291
315
|
- spec/lib/ticket_evolution/transaction_spec.rb
|
292
|
-
- spec/lib/ticket_evolution/transactions_spec.rb
|
293
316
|
- spec/lib/ticket_evolution/user_spec.rb
|
294
317
|
- spec/lib/ticket_evolution/users_spec.rb
|
295
318
|
- spec/lib/ticket_evolution/venue_spec.rb
|
@@ -324,7 +347,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
324
347
|
version: '0'
|
325
348
|
segments:
|
326
349
|
- 0
|
327
|
-
hash:
|
350
|
+
hash: 3060058504206132811
|
328
351
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
329
352
|
none: false
|
330
353
|
requirements:
|
@@ -352,9 +375,13 @@ test_files:
|
|
352
375
|
- spec/fixtures/net/endpoints/company/destroy_error.yml
|
353
376
|
- spec/fixtures/net/endpoints/company/destroy_success.yml
|
354
377
|
- spec/fixtures/net/endpoints/search.yml
|
378
|
+
- spec/fixtures/net/endpoints/settings.yml
|
379
|
+
- spec/fixtures/net/endpoints/settings_service_fees.yml
|
355
380
|
- spec/fixtures/net/endpoints/track_details/show.yml
|
356
381
|
- spec/lib/ext/hash_spec.rb
|
382
|
+
- spec/lib/faraday/localhost_header_spec.rb
|
357
383
|
- spec/lib/ticket_evolution/account_spec.rb
|
384
|
+
- spec/lib/ticket_evolution/accounts/transactions_spec.rb
|
358
385
|
- spec/lib/ticket_evolution/accounts_spec.rb
|
359
386
|
- spec/lib/ticket_evolution/address_spec.rb
|
360
387
|
- spec/lib/ticket_evolution/brokerage_spec.rb
|
@@ -389,9 +416,12 @@ test_files:
|
|
389
416
|
- spec/lib/ticket_evolution/event_spec.rb
|
390
417
|
- spec/lib/ticket_evolution/events_spec.rb
|
391
418
|
- spec/lib/ticket_evolution/office_spec.rb
|
419
|
+
- spec/lib/ticket_evolution/offices/credit_cards_spec.rb
|
392
420
|
- spec/lib/ticket_evolution/offices_spec.rb
|
393
421
|
- spec/lib/ticket_evolution/order_spec.rb
|
422
|
+
- spec/lib/ticket_evolution/orders/payments_spec.rb
|
394
423
|
- spec/lib/ticket_evolution/orders_spec.rb
|
424
|
+
- spec/lib/ticket_evolution/payment_spec.rb
|
395
425
|
- spec/lib/ticket_evolution/performer_spec.rb
|
396
426
|
- spec/lib/ticket_evolution/performers_spec.rb
|
397
427
|
- spec/lib/ticket_evolution/phone_number_spec.rb
|
@@ -400,14 +430,19 @@ test_files:
|
|
400
430
|
- spec/lib/ticket_evolution/rate_option_spec.rb
|
401
431
|
- spec/lib/ticket_evolution/rate_options_spec.rb
|
402
432
|
- spec/lib/ticket_evolution/search_spec.rb
|
433
|
+
- spec/lib/ticket_evolution/service_fee_spec.rb
|
434
|
+
- spec/lib/ticket_evolution/settings_spec.rb
|
403
435
|
- spec/lib/ticket_evolution/shipment_spec.rb
|
404
436
|
- spec/lib/ticket_evolution/shipments_spec.rb
|
437
|
+
- spec/lib/ticket_evolution/shipping_setting_spec.rb
|
438
|
+
- spec/lib/ticket_evolution/taken_tickets_spec.rb
|
405
439
|
- spec/lib/ticket_evolution/ticket_group_spec.rb
|
440
|
+
- spec/lib/ticket_evolution/ticket_groups/ticket_holds_spec.rb
|
406
441
|
- spec/lib/ticket_evolution/ticket_groups_spec.rb
|
442
|
+
- spec/lib/ticket_evolution/ticket_hold_spec.rb
|
407
443
|
- spec/lib/ticket_evolution/track_detail_spec.rb
|
408
444
|
- spec/lib/ticket_evolution/track_details_spec.rb
|
409
445
|
- spec/lib/ticket_evolution/transaction_spec.rb
|
410
|
-
- spec/lib/ticket_evolution/transactions_spec.rb
|
411
446
|
- spec/lib/ticket_evolution/user_spec.rb
|
412
447
|
- spec/lib/ticket_evolution/users_spec.rb
|
413
448
|
- spec/lib/ticket_evolution/venue_spec.rb
|