ticketevolution-ruby 0.7.42 → 0.7.43
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.travis.yml +1 -0
- data/README.markdown +26 -22
- data/lib/ticket_evolution.rb +2 -0
- data/lib/ticket_evolution/custom_page.rb +4 -0
- data/lib/ticket_evolution/custom_pages.rb +6 -0
- data/lib/ticket_evolution/users.rb +1 -0
- data/lib/ticket_evolution/version.rb +1 -1
- data/ticketevolution-ruby-0.7.40.gem +0 -0
- metadata +246 -180
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b3986151c350dbb4d785e2c4a3857187492bdc8e
|
4
|
+
data.tar.gz: 784a2e19daf3df03c27af7dc6ad63b149e0f793a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 985b7196fe37a6b90abcf72502a5ba605e4f5f5adfbec693f6f7579535f50a3e1bb42ad0a10d53a215fffdddd4edce64e84f7b492085513d72447665ef328136
|
7
|
+
data.tar.gz: ad2eb82f331deaa5f9f9e346accb869bd8ad8027fd7fd234188b71aa6d4230f7a5075dec6ca625246a5f2e99fdc6b89718c25b31a698b4439e8a3ef6cf42e0da
|
data/.travis.yml
CHANGED
data/README.markdown
CHANGED
@@ -10,7 +10,8 @@ _NOTE: Known issues and missing functionality are documented in the [Github Issu
|
|
10
10
|
|
11
11
|
**Rubies supported**
|
12
12
|
|
13
|
-
-
|
13
|
+
- 2.2.x
|
14
|
+
- 1.9.x
|
14
15
|
- 1.8.7
|
15
16
|
- ree
|
16
17
|
|
@@ -134,74 +135,74 @@ Available endpoints
|
|
134
135
|
-------------------
|
135
136
|
Click on the links next to each endpoint for more detail.
|
136
137
|
|
137
|
-
**Accounts** - [http://
|
138
|
+
**Accounts** - [http://ticketevolution.atlassian.net/wiki/display/API/Accounts](http://ticketevolution.atlassian.net/wiki/display/API/Accounts)
|
138
139
|
|
139
140
|
@account = @connection.accounts.list(params)
|
140
141
|
@account = @connection.accounts.show(id)
|
141
142
|
|
142
|
-
**Addresses** - [http://
|
143
|
+
**Addresses** - [http://ticketevolution.atlassian.net/wiki/display/API/Addresses](http://ticketevolution.atlassian.net/wiki/display/API/Addresses)
|
143
144
|
|
144
145
|
@address = @client.addresses.create(params)
|
145
146
|
@address = @client.addresses.list(params)
|
146
147
|
@address = @client.addresses.show(id)
|
147
148
|
@address = @address.update_attributes(params)
|
148
149
|
|
149
|
-
**Brokerages** - [http://
|
150
|
+
**Brokerages** - [http://ticketevolution.atlassian.net/wiki/display/API/Brokerages](http://ticketevolution.atlassian.net/wiki/display/API/Brokerages)
|
150
151
|
|
151
152
|
@brokerage = @connection.brokerages.list(params)
|
152
153
|
@brokerage = @connection.brokerages.search(params)
|
153
154
|
@brokerage = @connection.brokerages.show(id)
|
154
155
|
|
155
|
-
**Categories** - [http://
|
156
|
+
**Categories** - [http://ticketevolution.atlassian.net/wiki/display/API/Categories](http://ticketevolution.atlassian.net/wiki/display/API/Categories)
|
156
157
|
|
157
158
|
@category = @connection.categories.deleted(params)
|
158
159
|
@category = @connection.categories.list(params)
|
159
160
|
@category = @connection.categories.show(id)
|
160
161
|
|
161
|
-
**Clients** - [http://
|
162
|
+
**Clients** - [http://ticketevolution.atlassian.net/wiki/display/API/Clients](http://ticketevolution.atlassian.net/wiki/display/API/Clients)
|
162
163
|
|
163
164
|
@client = @connection.clients.create(params)
|
164
165
|
@client = @connection.clients.list(params)
|
165
166
|
@client = @connection.clients.show(id)
|
166
167
|
@client = @client.update_attributes(params)
|
167
168
|
|
168
|
-
**Companies** - [http://
|
169
|
+
**Companies** - [http://ticketevolution.atlassian.net/wiki/display/API/Companies](http://ticketevolution.atlassian.net/wiki/display/API/Companies)
|
169
170
|
|
170
171
|
@company = @connection.companies.create(params)
|
171
172
|
@company = @connection.companies.list(params)
|
172
173
|
@company = @connection.companies.show(id)
|
173
174
|
@company = @company.update_attributes(params)
|
174
175
|
|
175
|
-
**Configurations** - [http://
|
176
|
+
**Configurations** - [http://ticketevolution.atlassian.net/wiki/display/API/Venue+Configurations](http://ticketevolution.atlassian.net/wiki/display/API/Venue+Configurations)
|
176
177
|
|
177
178
|
@configuration = @connection.configurations.list(params)
|
178
179
|
@configuration = @connection.configurations.show(id)
|
179
180
|
|
180
|
-
**Credit Cards** - [http://
|
181
|
+
**Credit Cards** - [http://https://ticketevolution.atlassian.net/wiki/display/API/Credit+Cards](http://https://ticketevolution.atlassian.net/wiki/display/API/Credit+Cards)
|
181
182
|
|
182
183
|
@credit_card = @client.credit_cards.create(params)
|
183
184
|
@credit_card = @client.credit_cards.list(params)
|
184
185
|
|
185
|
-
**Email Addresses** - [http://
|
186
|
+
**Email Addresses** - [http://ticketevolution.atlassian.net/wiki/display/API/Email+Addresses](http://ticketevolution.atlassian.net/wiki/display/API/Email+Addresses)
|
186
187
|
|
187
188
|
@email_address = @client.email_addresses.create(params)
|
188
189
|
@email_address = @client.email_addresses.list(params)
|
189
190
|
@email_address = @client.email_addresses.show(id)
|
190
191
|
@email_address = @email_address.update_attributes(params)
|
191
192
|
|
192
|
-
**Events** - [http://
|
193
|
+
**Events** - [http://ticketevolution.atlassian.net/wiki/display/API/Events](http://ticketevolution.atlassian.net/wiki/display/API/Events)
|
193
194
|
|
194
195
|
@event = @connection.events.deleted(params)
|
195
196
|
@event = @connection.events.list(params)
|
196
197
|
@event = @connection.events.show(id)
|
197
198
|
|
198
|
-
**Offices** - [http://
|
199
|
+
**Offices** - [http://ticketevolution.atlassian.net/wiki/display/API/Offices](http://ticketevolution.atlassian.net/wiki/display/API/Offices)
|
199
200
|
|
200
201
|
@office = @connection.offices.list(params)
|
201
202
|
@office = @connection.offices.search(params)
|
202
203
|
@office = @connection.offices.show(id)
|
203
204
|
|
204
|
-
**Orders** - [http://
|
205
|
+
**Orders** - [http://ticketevolution.atlassian.net/wiki/display/API/Orders](http://ticketevolution.atlassian.net/wiki/display/API/Orders)
|
205
206
|
|
206
207
|
@order = @order.accept(params)
|
207
208
|
@order = @order.complete
|
@@ -213,55 +214,58 @@ Click on the links next to each endpoint for more detail.
|
|
213
214
|
@order = @connection.orders.show(id)
|
214
215
|
@order = @order.update_attributes(params)
|
215
216
|
|
216
|
-
**Performers** - [http://
|
217
|
+
**Performers** - [http://ticketevolution.atlassian.net/wiki/display/API/Performers](http://ticketevolution.atlassian.net/wiki/display/API/Performers)
|
217
218
|
|
218
219
|
@performer = @connection.performers.deleted(params)
|
219
220
|
@performer = @connection.performers.list(params)
|
220
221
|
@performer = @connection.performers.search(params)
|
221
222
|
@performer = @connection.performers.show(id)
|
222
223
|
|
223
|
-
**Phone Numbers** - [http://
|
224
|
+
**Phone Numbers** - [http://ticketevolution.atlassian.net/wiki/display/API/Phone+Numbers](http://ticketevolution.atlassian.net/wiki/display/API/Phone+Numbers)
|
224
225
|
|
225
226
|
@phone_number = @client.phone_numbers.create(params)
|
226
227
|
@phone_number = @client.phone_numbers.list(params)
|
227
228
|
@phone_number = @client.phone_numbers.show(id)
|
228
229
|
@phone_number = @phone_number.update_attributes(params)
|
229
230
|
|
230
|
-
**Quotes** - [http://
|
231
|
+
**Quotes** - [http://ticketevolution.atlassian.net/wiki/display/API/Quotes](http://ticketevolution.atlassian.net/wiki/display/API/Quotes)
|
231
232
|
|
232
233
|
@quote = @connection.quotes.list(params)
|
233
234
|
@quote = @connection.quotes.search(params)
|
234
235
|
@quote = @connection.quotes.show(id)
|
235
236
|
|
236
|
-
**Search** - [http://
|
237
|
+
**Search** - [http://ticketevolution.atlassian.net/wiki/pages/viewpage.action?pageId=6455316](http://ticketevolution.atlassian.net/wiki/pages/viewpage.action?pageId=6455316)
|
237
238
|
|
238
239
|
@search = @connection.search.list(params)
|
240
|
+
@search = @connection.searches.suggestions(params)
|
239
241
|
|
240
|
-
**Shipments** - [http://
|
242
|
+
**Shipments** - [http://ticketevolution.atlassian.net/wiki/display/API/Shipments](http://ticketevolution.atlassian.net/wiki/display/API/Shipments)
|
241
243
|
|
242
244
|
@shipment = @connection.shipments.create(params)
|
243
245
|
@shipment = @connection.shipments.create_airbill(params)
|
244
246
|
@shipment = @connection.shipments.list(params)
|
245
247
|
@shipment = @connection.shipments.show(id)
|
248
|
+
@shipment = @connection.shipments.suggestion(params)
|
246
249
|
@shipment = @shipment.update_attributes(params)
|
247
250
|
|
248
|
-
**Ticket Groups** - [http://
|
251
|
+
**Ticket Groups** - [http://ticketevolution.atlassian.net/wiki/display/API/Ticket+Groups](http://ticketevolution.atlassian.net/wiki/display/API/Ticket+Groups)
|
249
252
|
|
250
253
|
@ticket_group = @connection.ticket_groups.list(params)
|
251
254
|
@ticket_group = @connection.ticket_groups.show(id)
|
252
255
|
|
253
|
-
**Transactions** - [http://
|
256
|
+
**Transactions** - [http://ticketevolution.atlassian.net/wiki/display/API/Transactions](http://ticketevolution.atlassian.net/wiki/display/API/Transactions)
|
254
257
|
|
255
258
|
@transaction = @account.transactions.list(params)
|
256
259
|
@transaction = @account.transactions.show(id)
|
257
260
|
|
258
|
-
**Users** - [http://
|
261
|
+
**Users** - [http://ticketevolution.atlassian.net/wiki/display/API/Users](http://ticketevolution.atlassian.net/wiki/display/API/Users)
|
259
262
|
|
263
|
+
@user = @connection.users.create(params)
|
260
264
|
@user = @connection.users.list(params)
|
261
265
|
@user = @connection.users.search(params)
|
262
266
|
@user = @connection.users.show(id)
|
263
267
|
|
264
|
-
**Venues** - [http://
|
268
|
+
**Venues** - [http://ticketevolution.atlassian.net/wiki/display/API/Venues](http://ticketevolution.atlassian.net/wiki/display/API/Venues)
|
265
269
|
|
266
270
|
@venue = @connection.venues.deleted(params)
|
267
271
|
@venue = @connection.venues.list(params)
|
data/lib/ticket_evolution.rb
CHANGED
@@ -84,6 +84,7 @@ i.req 'commission'
|
|
84
84
|
i.req 'configuration'
|
85
85
|
i.req 'credit_card'
|
86
86
|
i.req 'credit_memo'
|
87
|
+
i.req 'custom_page'
|
87
88
|
i.req 'ticket_hold'
|
88
89
|
i.req 'email_address'
|
89
90
|
i.req 'credential'
|
@@ -122,6 +123,7 @@ i.req 'configurations'
|
|
122
123
|
i.req 'credit_memos'
|
123
124
|
i.req 'credit_memo_payment'
|
124
125
|
i.req 'credentials'
|
126
|
+
i.req 'custom_pages'
|
125
127
|
i.req 'events'
|
126
128
|
i.req 'item'
|
127
129
|
i.req 'offices'
|
Binary file
|
metadata
CHANGED
@@ -1,203 +1,177 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: ticketevolution-ruby
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 7
|
9
|
-
- 42
|
10
|
-
version: 0.7.42
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.7.43
|
11
5
|
platform: ruby
|
12
|
-
authors:
|
6
|
+
authors:
|
13
7
|
- Ticket Evolution
|
14
8
|
autorequire:
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2015-04-29 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
22
14
|
name: activesupport
|
23
|
-
|
24
|
-
|
25
|
-
none: false
|
26
|
-
requirements:
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
27
17
|
- - ">="
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
hash: 7
|
30
|
-
segments:
|
31
|
-
- 3
|
32
|
-
- 0
|
33
|
-
- 0
|
18
|
+
- !ruby/object:Gem::Version
|
34
19
|
version: 3.0.0
|
35
20
|
type: :runtime
|
36
|
-
version_requirements: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
name: faraday
|
39
21
|
prerelease: false
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: faraday
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
50
33
|
version: 0.8.8
|
51
34
|
type: :runtime
|
52
|
-
version_requirements: *id002
|
53
|
-
- !ruby/object:Gem::Dependency
|
54
|
-
name: yajl-ruby
|
55
35
|
prerelease: false
|
56
|
-
|
57
|
-
|
58
|
-
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.8.8
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: yajl-ruby
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
59
45
|
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
hash: 13
|
62
|
-
segments:
|
63
|
-
- 0
|
64
|
-
- 7
|
65
|
-
- 7
|
46
|
+
- !ruby/object:Gem::Version
|
66
47
|
version: 0.7.7
|
67
48
|
type: :runtime
|
68
|
-
version_requirements: *id003
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: multi_json
|
71
49
|
prerelease: false
|
72
|
-
|
73
|
-
|
74
|
-
requirements:
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
75
52
|
- - ">="
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 0.7.7
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: multi_json
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
82
61
|
version: 0.0.4
|
83
62
|
type: :runtime
|
84
|
-
version_requirements: *id004
|
85
|
-
- !ruby/object:Gem::Dependency
|
86
|
-
name: nokogiri
|
87
63
|
prerelease: false
|
88
|
-
|
89
|
-
|
90
|
-
requirements:
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
91
66
|
- - ">="
|
92
|
-
- !ruby/object:Gem::Version
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.0.4
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: nokogiri
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
98
75
|
version: 1.4.3
|
99
76
|
type: :runtime
|
100
|
-
version_requirements: *id005
|
101
|
-
- !ruby/object:Gem::Dependency
|
102
|
-
name: rspec
|
103
77
|
prerelease: false
|
104
|
-
|
105
|
-
|
106
|
-
requirements:
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
107
80
|
- - ">="
|
108
|
-
- !ruby/object:Gem::Version
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.4.3
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rspec
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
114
89
|
version: 2.7.1
|
115
90
|
type: :development
|
116
|
-
version_requirements: *id006
|
117
|
-
- !ruby/object:Gem::Dependency
|
118
|
-
name: vcr
|
119
91
|
prerelease: false
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 2.7.1
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: vcr
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "<"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '2'
|
129
104
|
type: :development
|
130
|
-
version_requirements: *id007
|
131
|
-
- !ruby/object:Gem::Dependency
|
132
|
-
name: webmock
|
133
105
|
prerelease: false
|
134
|
-
|
135
|
-
|
136
|
-
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "<"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '2'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: webmock
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
137
115
|
- - ">="
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
hash: 11
|
140
|
-
segments:
|
141
|
-
- 1
|
142
|
-
- 7
|
143
|
-
- 0
|
116
|
+
- !ruby/object:Gem::Version
|
144
117
|
version: 1.7.0
|
145
|
-
- - <
|
146
|
-
- !ruby/object:Gem::Version
|
147
|
-
hash: 55
|
148
|
-
segments:
|
149
|
-
- 1
|
150
|
-
- 8
|
151
|
-
- 0
|
118
|
+
- - "<"
|
119
|
+
- !ruby/object:Gem::Version
|
152
120
|
version: 1.8.0
|
153
121
|
type: :development
|
154
|
-
version_requirements: *id008
|
155
|
-
- !ruby/object:Gem::Dependency
|
156
|
-
name: awesome_print
|
157
122
|
prerelease: false
|
158
|
-
|
159
|
-
|
160
|
-
requirements:
|
123
|
+
version_requirements: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
161
125
|
- - ">="
|
162
|
-
- !ruby/object:Gem::Version
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
version:
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: 1.7.0
|
128
|
+
- - "<"
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: 1.8.0
|
131
|
+
- !ruby/object:Gem::Dependency
|
132
|
+
name: awesome_print
|
133
|
+
requirement: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - ">="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: '0'
|
167
138
|
type: :development
|
168
|
-
version_requirements: *id009
|
169
|
-
- !ruby/object:Gem::Dependency
|
170
|
-
name: rake
|
171
139
|
prerelease: false
|
172
|
-
|
173
|
-
|
174
|
-
|
140
|
+
version_requirements: !ruby/object:Gem::Requirement
|
141
|
+
requirements:
|
142
|
+
- - ">="
|
143
|
+
- !ruby/object:Gem::Version
|
144
|
+
version: '0'
|
145
|
+
- !ruby/object:Gem::Dependency
|
146
|
+
name: rake
|
147
|
+
requirement: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
175
149
|
- - ">="
|
176
|
-
- !ruby/object:Gem::Version
|
177
|
-
|
178
|
-
segments:
|
179
|
-
- 0
|
180
|
-
version: "0"
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
181
152
|
type: :development
|
182
|
-
|
183
|
-
|
184
|
-
|
153
|
+
prerelease: false
|
154
|
+
version_requirements: !ruby/object:Gem::Requirement
|
155
|
+
requirements:
|
156
|
+
- - ">="
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
version: '0'
|
159
|
+
description: Provides Ruby wrappers for the Ticket Evolution API (http://developer.ticketevolution.com).
|
160
|
+
Ticket Evolution is the industry leader in software for the Ticket Broker industry.
|
161
|
+
email:
|
185
162
|
- dev@ticketevolution.com
|
186
163
|
executables: []
|
187
|
-
|
188
164
|
extensions: []
|
189
|
-
|
190
165
|
extra_rdoc_files: []
|
191
|
-
|
192
|
-
|
193
|
-
- .
|
194
|
-
- .minimum.versions.gemfile
|
195
|
-
- .
|
196
|
-
- .
|
197
|
-
- .
|
198
|
-
- .ruby-
|
199
|
-
- .
|
200
|
-
- .travis.yml
|
166
|
+
files:
|
167
|
+
- ".gitignore"
|
168
|
+
- ".minimum.versions.gemfile"
|
169
|
+
- ".minimum.versions.gemfile.lock"
|
170
|
+
- ".rdebugrc"
|
171
|
+
- ".rspec"
|
172
|
+
- ".ruby-gemset"
|
173
|
+
- ".ruby-version"
|
174
|
+
- ".travis.yml"
|
201
175
|
- Gemfile
|
202
176
|
- LICENSE
|
203
177
|
- README.markdown
|
@@ -260,6 +234,8 @@ files:
|
|
260
234
|
- lib/ticket_evolution/credit_memo_payment.rb
|
261
235
|
- lib/ticket_evolution/credit_memos.rb
|
262
236
|
- lib/ticket_evolution/credit_memos/credit_memo_payments.rb
|
237
|
+
- lib/ticket_evolution/custom_page.rb
|
238
|
+
- lib/ticket_evolution/custom_pages.rb
|
263
239
|
- lib/ticket_evolution/email_address.rb
|
264
240
|
- lib/ticket_evolution/errors/connection_not_found.rb
|
265
241
|
- lib/ticket_evolution/errors/endpoint_configuration_error.rb
|
@@ -427,42 +403,132 @@ files:
|
|
427
403
|
- spec/support/connection.rb
|
428
404
|
- spec/support/stub_models.rb
|
429
405
|
- spec/support/vcr.rb
|
406
|
+
- ticketevolution-ruby-0.7.40.gem
|
430
407
|
- ticketevolution-ruby.gemspec
|
431
|
-
has_rdoc: true
|
432
408
|
homepage: https://github.com/ticketevolution/ticketevolution-ruby
|
433
409
|
licenses: []
|
434
|
-
|
410
|
+
metadata: {}
|
435
411
|
post_install_message:
|
436
412
|
rdoc_options: []
|
437
|
-
|
438
|
-
require_paths:
|
413
|
+
require_paths:
|
439
414
|
- lib
|
440
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
441
|
-
|
442
|
-
requirements:
|
415
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
416
|
+
requirements:
|
443
417
|
- - ">="
|
444
|
-
- !ruby/object:Gem::Version
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
version: "0"
|
449
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
450
|
-
none: false
|
451
|
-
requirements:
|
418
|
+
- !ruby/object:Gem::Version
|
419
|
+
version: '0'
|
420
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
421
|
+
requirements:
|
452
422
|
- - ">="
|
453
|
-
- !ruby/object:Gem::Version
|
454
|
-
hash: 17
|
455
|
-
segments:
|
456
|
-
- 1
|
457
|
-
- 3
|
458
|
-
- 5
|
423
|
+
- !ruby/object:Gem::Version
|
459
424
|
version: 1.3.5
|
460
425
|
requirements: []
|
461
|
-
|
462
426
|
rubyforge_project:
|
463
|
-
rubygems_version:
|
427
|
+
rubygems_version: 2.4.6
|
464
428
|
signing_key:
|
465
|
-
specification_version:
|
429
|
+
specification_version: 4
|
466
430
|
summary: Integration gem for Ticket Evolution's API
|
467
|
-
test_files:
|
468
|
-
|
431
|
+
test_files:
|
432
|
+
- spec/fixtures/fake.rb
|
433
|
+
- spec/fixtures/net/core/connection.yml
|
434
|
+
- spec/fixtures/net/endpoints/accounts.yml
|
435
|
+
- spec/fixtures/net/endpoints/brokerages.yml
|
436
|
+
- spec/fixtures/net/endpoints/categories.yml
|
437
|
+
- spec/fixtures/net/endpoints/clients.yml
|
438
|
+
- spec/fixtures/net/endpoints/clients/create.yml
|
439
|
+
- spec/fixtures/net/endpoints/clients/list.yml
|
440
|
+
- spec/fixtures/net/endpoints/clients/model.yml
|
441
|
+
- spec/fixtures/net/endpoints/clients/update_fail.yml
|
442
|
+
- spec/fixtures/net/endpoints/clients/update_success.yml
|
443
|
+
- spec/fixtures/net/endpoints/company/destroy_error.yml
|
444
|
+
- spec/fixtures/net/endpoints/company/destroy_success.yml
|
445
|
+
- spec/fixtures/net/endpoints/search.yml
|
446
|
+
- spec/fixtures/net/endpoints/settings.yml
|
447
|
+
- spec/fixtures/net/endpoints/settings_service_fees.yml
|
448
|
+
- spec/fixtures/net/endpoints/track_details/show.yml
|
449
|
+
- spec/lib/ext/hash_spec.rb
|
450
|
+
- spec/lib/faraday/localhost_header_spec.rb
|
451
|
+
- spec/lib/ticket_evolution/account_spec.rb
|
452
|
+
- spec/lib/ticket_evolution/accounts/transactions_spec.rb
|
453
|
+
- spec/lib/ticket_evolution/accounts_spec.rb
|
454
|
+
- spec/lib/ticket_evolution/address_spec.rb
|
455
|
+
- spec/lib/ticket_evolution/affiliate_spec.rb
|
456
|
+
- spec/lib/ticket_evolution/affilliates_spec.rb
|
457
|
+
- spec/lib/ticket_evolution/brokerage_spec.rb
|
458
|
+
- spec/lib/ticket_evolution/brokerages_spec.rb
|
459
|
+
- spec/lib/ticket_evolution/categories_spec.rb
|
460
|
+
- spec/lib/ticket_evolution/category_spec.rb
|
461
|
+
- spec/lib/ticket_evolution/client_spec.rb
|
462
|
+
- spec/lib/ticket_evolution/clients/addresses_spec.rb
|
463
|
+
- spec/lib/ticket_evolution/clients/credit_cards_spec.rb
|
464
|
+
- spec/lib/ticket_evolution/clients/email_addresses_spec.rb
|
465
|
+
- spec/lib/ticket_evolution/clients/phone_numbers_spec.rb
|
466
|
+
- spec/lib/ticket_evolution/clients_spec.rb
|
467
|
+
- spec/lib/ticket_evolution/companies_spec.rb
|
468
|
+
- spec/lib/ticket_evolution/company_spec.rb
|
469
|
+
- spec/lib/ticket_evolution/configuration_spec.rb
|
470
|
+
- spec/lib/ticket_evolution/configurations_spec.rb
|
471
|
+
- spec/lib/ticket_evolution/core/api_error_spec.rb
|
472
|
+
- spec/lib/ticket_evolution/core/base_spec.rb
|
473
|
+
- spec/lib/ticket_evolution/core/builder_spec.rb
|
474
|
+
- spec/lib/ticket_evolution/core/collection_spec.rb
|
475
|
+
- spec/lib/ticket_evolution/core/connection_spec.rb
|
476
|
+
- spec/lib/ticket_evolution/core/datum_spec.rb
|
477
|
+
- spec/lib/ticket_evolution/core/endpoint_spec.rb
|
478
|
+
- spec/lib/ticket_evolution/core/model_spec.rb
|
479
|
+
- spec/lib/ticket_evolution/core/time_spec.rb
|
480
|
+
- spec/lib/ticket_evolution/credit_card_spec.rb
|
481
|
+
- spec/lib/ticket_evolution/email_address_spec.rb
|
482
|
+
- spec/lib/ticket_evolution/errors/connection_not_found_spec.rb
|
483
|
+
- spec/lib/ticket_evolution/errors/endpoint_configuration_error_spec.rb
|
484
|
+
- spec/lib/ticket_evolution/errors/invalid_configuration_spec.rb
|
485
|
+
- spec/lib/ticket_evolution/errors/method_unavailable_error_spec.rb
|
486
|
+
- spec/lib/ticket_evolution/event_spec.rb
|
487
|
+
- spec/lib/ticket_evolution/events_spec.rb
|
488
|
+
- spec/lib/ticket_evolution/filtered_tickets_spec.rb
|
489
|
+
- spec/lib/ticket_evolution/office_spec.rb
|
490
|
+
- spec/lib/ticket_evolution/offices/credit_cards_spec.rb
|
491
|
+
- spec/lib/ticket_evolution/offices_spec.rb
|
492
|
+
- spec/lib/ticket_evolution/order_spec.rb
|
493
|
+
- spec/lib/ticket_evolution/orders_spec.rb
|
494
|
+
- spec/lib/ticket_evolution/payment_spec.rb
|
495
|
+
- spec/lib/ticket_evolution/payments_spec.rb
|
496
|
+
- spec/lib/ticket_evolution/performer_spec.rb
|
497
|
+
- spec/lib/ticket_evolution/performers_spec.rb
|
498
|
+
- spec/lib/ticket_evolution/phone_number_spec.rb
|
499
|
+
- spec/lib/ticket_evolution/quote_spec.rb
|
500
|
+
- spec/lib/ticket_evolution/quotes_spec.rb
|
501
|
+
- spec/lib/ticket_evolution/rate_option_spec.rb
|
502
|
+
- spec/lib/ticket_evolution/rate_options_spec.rb
|
503
|
+
- spec/lib/ticket_evolution/search_spec.rb
|
504
|
+
- spec/lib/ticket_evolution/service_fee_spec.rb
|
505
|
+
- spec/lib/ticket_evolution/settings_spec.rb
|
506
|
+
- spec/lib/ticket_evolution/shipment_spec.rb
|
507
|
+
- spec/lib/ticket_evolution/shipments_spec.rb
|
508
|
+
- spec/lib/ticket_evolution/shipping_setting_spec.rb
|
509
|
+
- spec/lib/ticket_evolution/ticket_group_spec.rb
|
510
|
+
- spec/lib/ticket_evolution/ticket_groups/ticket_holds_spec.rb
|
511
|
+
- spec/lib/ticket_evolution/ticket_groups_spec.rb
|
512
|
+
- spec/lib/ticket_evolution/ticket_hold_spec.rb
|
513
|
+
- spec/lib/ticket_evolution/track_detail_spec.rb
|
514
|
+
- spec/lib/ticket_evolution/track_details_spec.rb
|
515
|
+
- spec/lib/ticket_evolution/transaction_spec.rb
|
516
|
+
- spec/lib/ticket_evolution/user_spec.rb
|
517
|
+
- spec/lib/ticket_evolution/users_spec.rb
|
518
|
+
- spec/lib/ticket_evolution/venue_spec.rb
|
519
|
+
- spec/lib/ticket_evolution/venues_spec.rb
|
520
|
+
- spec/lib/ticket_evolution_spec.rb
|
521
|
+
- spec/shared_examples/endpoints/class.rb
|
522
|
+
- spec/shared_examples/endpoints/create.rb
|
523
|
+
- spec/shared_examples/endpoints/deleted.rb
|
524
|
+
- spec/shared_examples/endpoints/destroy.rb
|
525
|
+
- spec/shared_examples/endpoints/list.rb
|
526
|
+
- spec/shared_examples/endpoints/search.rb
|
527
|
+
- spec/shared_examples/endpoints/show.rb
|
528
|
+
- spec/shared_examples/endpoints/update.rb
|
529
|
+
- spec/shared_examples/errors.rb
|
530
|
+
- spec/shared_examples/models.rb
|
531
|
+
- spec/spec_helper.rb
|
532
|
+
- spec/support/connection.rb
|
533
|
+
- spec/support/stub_models.rb
|
534
|
+
- spec/support/vcr.rb
|