spark_api 1.4.28 → 1.4.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- YzJlMDhlOWU3YmE2MjRlOWI1YzUxZGRhZmQ2ODE1MWM3NTVhNGFhZQ==
5
- data.tar.gz: !binary |-
6
- OTBkZWY3NzI2NGFlODdjOGY2N2JkMmM0NDlhNWIxZTZjMDhkMGIwOQ==
2
+ SHA1:
3
+ metadata.gz: fe8ad347473ad647fb0da6fd681ebe2c6da50daa
4
+ data.tar.gz: 7d17ef58323eb5aad73e09167478d0456a7f1df9
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- Zjc1MGQ4NmY0NWE0MjNmYTUzYmMzNzM4MTcxY2VmY2ZkODE1YTgxMjYwZjU3
10
- NmIxMmVkZjI1OGYyMmM4NDAwMWU3ZmIwNzUwOWU2MmFmNDdmN2U1NDcwMTQ3
11
- NTY5NjM0NmQzNTAzNzQ1NDUwYmYzMDFmZjg3NWRiYmQxNzk3YzU=
12
- data.tar.gz: !binary |-
13
- NDc5YTFmNzVlNjcwMWRjNzE2NzI2ZDdmYjVmNzg0ZjQ5ZjBmNDA1MThmMzNh
14
- YTI0NjIxYzZkYjY2YTA0NDVkMzA0ZWU3M2ZjMmNiMjY0Y2E1NDgzMTY0ZWYx
15
- MjEwNTAxNmI2ZjMxNjk2YTBkZjc0Y2VhNzExZTY1NDE0NzU0NDI=
6
+ metadata.gz: 0c2df47ef7d780b071df24b586c35838ef1537b68fbd4aac78d8adc99786c2b7de3e81f5d322e781bd0d06defd27fd4bb9f2058788d169d6e48184e346b629ef
7
+ data.tar.gz: a23bbccaab494a0007fc75ba5f7317473bc66bfaa268e221b008ad9eef1accbea77008fdc2ba246ebe5508a4f328164c27876f6404bfa3bf1bbfb049e3bed26e
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.28
1
+ 1.4.29
@@ -52,7 +52,13 @@ module SparkApi
52
52
  nil
53
53
  end
54
54
  end
55
-
55
+
56
+ def logo
57
+ if images.kind_of? Array
58
+ images.find { |image| image.Type == "Logo" }
59
+ end
60
+ end
61
+
56
62
  def save(arguments={})
57
63
  self.errors = [] # clear the errors hash
58
64
  begin
@@ -21,11 +21,6 @@ module SparkApi
21
21
  end
22
22
  end
23
23
 
24
- def logo
25
- if images.kind_of? Array
26
- images.find { |image| image.Type == "Logo" }
27
- end
28
- end
29
24
  end
30
25
  end
31
26
  end
@@ -2,6 +2,8 @@ require './spec/spec_helper'
2
2
 
3
3
  describe AccountReport do
4
4
 
5
+ it_behaves_like(:account, AccountReport)
6
+
5
7
  let(:account_report) {
6
8
  AccountReport.new({
7
9
  "Id" => "12345",
@@ -51,27 +53,5 @@ describe AccountReport do
51
53
  end
52
54
 
53
55
  end
54
-
55
- describe 'logo' do
56
-
57
- it 'returns the logo' do
58
- logo = SparkApi::Models::Base.new( {"Type" => "Logo"} )
59
- not_logo = SparkApi::Models::Base.new( {"Type" => "Nope" } )
60
- account_report.images = [logo, not_logo]
61
- expect(account_report.logo).to be logo
62
- end
63
-
64
- it 'returns nil if there is no logo' do
65
- not_logo = SparkApi::Models::Base.new( {"Type" => "Nope" } )
66
- account_report.images = [not_logo]
67
- expect(account_report.logo).to be nil
68
- end
69
-
70
- it 'returns nil if there are no images' do
71
- expect(account_report.images).to be nil
72
- expect(account_report.logo).to be nil
73
- end
74
-
75
- end
76
56
 
77
57
  end
@@ -1,6 +1,9 @@
1
1
  require './spec/spec_helper'
2
2
 
3
3
  describe Account do
4
+
5
+ it_behaves_like(:account, Account)
6
+
4
7
  describe "units" do
5
8
  before(:each) do
6
9
  @account = Account.new({
@@ -176,6 +179,6 @@ describe Account do
176
179
  end
177
180
 
178
181
  end
179
-
182
+
180
183
  end
181
184
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spark_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.28
4
+ version: 1.4.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Hornseth
@@ -9,270 +9,270 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2019-02-18 00:00:00.000000000 Z
12
+ date: 2019-07-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
20
  version: 0.9.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: 0.9.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: multi_json
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ~>
32
+ - - "~>"
33
33
  - !ruby/object:Gem::Version
34
34
  version: '1.0'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ~>
39
+ - - "~>"
40
40
  - !ruby/object:Gem::Version
41
41
  version: '1.0'
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: json
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ~>
46
+ - - "~>"
47
47
  - !ruby/object:Gem::Version
48
48
  version: '1.7'
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ~>
53
+ - - "~>"
54
54
  - !ruby/object:Gem::Version
55
55
  version: '1.7'
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: builder
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - ! '>='
60
+ - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: 2.1.2
63
- - - <
63
+ - - "<"
64
64
  - !ruby/object:Gem::Version
65
65
  version: 4.0.0
66
66
  type: :runtime
67
67
  prerelease: false
68
68
  version_requirements: !ruby/object:Gem::Requirement
69
69
  requirements:
70
- - - ! '>='
70
+ - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: 2.1.2
73
- - - <
73
+ - - "<"
74
74
  - !ruby/object:Gem::Version
75
75
  version: 4.0.0
76
76
  - !ruby/object:Gem::Dependency
77
77
  name: will_paginate
78
78
  requirement: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ! '>='
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
82
  version: 3.0.pre2
83
- - - <
83
+ - - "<"
84
84
  - !ruby/object:Gem::Version
85
85
  version: 4.0.0
86
86
  type: :runtime
87
87
  prerelease: false
88
88
  version_requirements: !ruby/object:Gem::Requirement
89
89
  requirements:
90
- - - ! '>='
90
+ - - ">="
91
91
  - !ruby/object:Gem::Version
92
92
  version: 3.0.pre2
93
- - - <
93
+ - - "<"
94
94
  - !ruby/object:Gem::Version
95
95
  version: 4.0.0
96
96
  - !ruby/object:Gem::Dependency
97
97
  name: highline
98
98
  requirement: !ruby/object:Gem::Requirement
99
99
  requirements:
100
- - - ! '>='
100
+ - - ">="
101
101
  - !ruby/object:Gem::Version
102
102
  version: '1.0'
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - ! '>='
107
+ - - ">="
108
108
  - !ruby/object:Gem::Version
109
109
  version: '1.0'
110
110
  - !ruby/object:Gem::Dependency
111
111
  name: public_suffix
112
112
  requirement: !ruby/object:Gem::Requirement
113
113
  requirements:
114
- - - ~>
114
+ - - "~>"
115
115
  - !ruby/object:Gem::Version
116
116
  version: 1.4.6
117
117
  type: :development
118
118
  prerelease: false
119
119
  version_requirements: !ruby/object:Gem::Requirement
120
120
  requirements:
121
- - - ~>
121
+ - - "~>"
122
122
  - !ruby/object:Gem::Version
123
123
  version: 1.4.6
124
124
  - !ruby/object:Gem::Dependency
125
125
  name: rake
126
126
  requirement: !ruby/object:Gem::Requirement
127
127
  requirements:
128
- - - ~>
128
+ - - "~>"
129
129
  - !ruby/object:Gem::Version
130
130
  version: 0.9.2
131
131
  type: :development
132
132
  prerelease: false
133
133
  version_requirements: !ruby/object:Gem::Requirement
134
134
  requirements:
135
- - - ~>
135
+ - - "~>"
136
136
  - !ruby/object:Gem::Version
137
137
  version: 0.9.2
138
138
  - !ruby/object:Gem::Dependency
139
139
  name: rspec
140
140
  requirement: !ruby/object:Gem::Requirement
141
141
  requirements:
142
- - - ~>
142
+ - - "~>"
143
143
  - !ruby/object:Gem::Version
144
144
  version: 2.14.0
145
145
  type: :development
146
146
  prerelease: false
147
147
  version_requirements: !ruby/object:Gem::Requirement
148
148
  requirements:
149
- - - ~>
149
+ - - "~>"
150
150
  - !ruby/object:Gem::Version
151
151
  version: 2.14.0
152
152
  - !ruby/object:Gem::Dependency
153
153
  name: webmock
154
154
  requirement: !ruby/object:Gem::Requirement
155
155
  requirements:
156
- - - ~>
156
+ - - "~>"
157
157
  - !ruby/object:Gem::Version
158
158
  version: '1.9'
159
159
  type: :development
160
160
  prerelease: false
161
161
  version_requirements: !ruby/object:Gem::Requirement
162
162
  requirements:
163
- - - ~>
163
+ - - "~>"
164
164
  - !ruby/object:Gem::Version
165
165
  version: '1.9'
166
166
  - !ruby/object:Gem::Dependency
167
167
  name: typhoeus
168
168
  requirement: !ruby/object:Gem::Requirement
169
169
  requirements:
170
- - - ~>
170
+ - - "~>"
171
171
  - !ruby/object:Gem::Version
172
172
  version: '0.3'
173
173
  type: :development
174
174
  prerelease: false
175
175
  version_requirements: !ruby/object:Gem::Requirement
176
176
  requirements:
177
- - - ~>
177
+ - - "~>"
178
178
  - !ruby/object:Gem::Version
179
179
  version: '0.3'
180
180
  - !ruby/object:Gem::Dependency
181
181
  name: ci_reporter
182
182
  requirement: !ruby/object:Gem::Requirement
183
183
  requirements:
184
- - - ~>
184
+ - - "~>"
185
185
  - !ruby/object:Gem::Version
186
186
  version: 1.7.0
187
187
  type: :development
188
188
  prerelease: false
189
189
  version_requirements: !ruby/object:Gem::Requirement
190
190
  requirements:
191
- - - ~>
191
+ - - "~>"
192
192
  - !ruby/object:Gem::Version
193
193
  version: 1.7.0
194
194
  - !ruby/object:Gem::Dependency
195
195
  name: rb-readline
196
196
  requirement: !ruby/object:Gem::Requirement
197
197
  requirements:
198
- - - ! '>='
198
+ - - ">="
199
199
  - !ruby/object:Gem::Version
200
200
  version: '0'
201
201
  type: :development
202
202
  prerelease: false
203
203
  version_requirements: !ruby/object:Gem::Requirement
204
204
  requirements:
205
- - - ! '>='
205
+ - - ">="
206
206
  - !ruby/object:Gem::Version
207
207
  version: '0'
208
208
  - !ruby/object:Gem::Dependency
209
209
  name: rb-fsevent
210
210
  requirement: !ruby/object:Gem::Requirement
211
211
  requirements:
212
- - - ! '>='
212
+ - - ">="
213
213
  - !ruby/object:Gem::Version
214
214
  version: '0'
215
215
  type: :development
216
216
  prerelease: false
217
217
  version_requirements: !ruby/object:Gem::Requirement
218
218
  requirements:
219
- - - ! '>='
219
+ - - ">="
220
220
  - !ruby/object:Gem::Version
221
221
  version: '0'
222
222
  - !ruby/object:Gem::Dependency
223
223
  name: simplecov
224
224
  requirement: !ruby/object:Gem::Requirement
225
225
  requirements:
226
- - - ! '>='
226
+ - - ">="
227
227
  - !ruby/object:Gem::Version
228
228
  version: '0'
229
229
  type: :development
230
230
  prerelease: false
231
231
  version_requirements: !ruby/object:Gem::Requirement
232
232
  requirements:
233
- - - ! '>='
233
+ - - ">="
234
234
  - !ruby/object:Gem::Version
235
235
  version: '0'
236
236
  - !ruby/object:Gem::Dependency
237
237
  name: simplecov-rcov
238
238
  requirement: !ruby/object:Gem::Requirement
239
239
  requirements:
240
- - - ! '>='
240
+ - - ">="
241
241
  - !ruby/object:Gem::Version
242
242
  version: '0'
243
243
  type: :development
244
244
  prerelease: false
245
245
  version_requirements: !ruby/object:Gem::Requirement
246
246
  requirements:
247
- - - ! '>='
247
+ - - ">="
248
248
  - !ruby/object:Gem::Version
249
249
  version: '0'
250
250
  - !ruby/object:Gem::Dependency
251
251
  name: listen
252
252
  requirement: !ruby/object:Gem::Requirement
253
253
  requirements:
254
- - - ~>
254
+ - - "~>"
255
255
  - !ruby/object:Gem::Version
256
256
  version: 3.0.8
257
257
  type: :development
258
258
  prerelease: false
259
259
  version_requirements: !ruby/object:Gem::Requirement
260
260
  requirements:
261
- - - ~>
261
+ - - "~>"
262
262
  - !ruby/object:Gem::Version
263
263
  version: 3.0.8
264
264
  - !ruby/object:Gem::Dependency
265
265
  name: guard-rspec
266
266
  requirement: !ruby/object:Gem::Requirement
267
267
  requirements:
268
- - - ! '>='
268
+ - - ">="
269
269
  - !ruby/object:Gem::Version
270
270
  version: '0'
271
271
  type: :development
272
272
  prerelease: false
273
273
  version_requirements: !ruby/object:Gem::Requirement
274
274
  requirements:
275
- - - ! '>='
275
+ - - ">="
276
276
  - !ruby/object:Gem::Version
277
277
  version: '0'
278
278
  description: The spark_api gem handles most of the boilerplate for communicating with
@@ -590,216 +590,216 @@ require_paths:
590
590
  - lib
591
591
  required_ruby_version: !ruby/object:Gem::Requirement
592
592
  requirements:
593
- - - ! '>='
593
+ - - ">="
594
594
  - !ruby/object:Gem::Version
595
595
  version: '0'
596
596
  required_rubygems_version: !ruby/object:Gem::Requirement
597
597
  requirements:
598
- - - ! '>='
598
+ - - ">="
599
599
  - !ruby/object:Gem::Version
600
600
  version: '1.8'
601
601
  requirements: []
602
602
  rubyforge_project: spark_api
603
- rubygems_version: 2.2.5
603
+ rubygems_version: 2.5.2
604
604
  signing_key:
605
605
  specification_version: 4
606
606
  summary: A library for interacting with the Spark web services.
607
607
  test_files:
608
- - spec/fixtures/generic_delete.json
609
- - spec/fixtures/listing_meta_translations/get.json
610
- - spec/fixtures/oauth2/refresh_body.json
611
- - spec/fixtures/oauth2/access.json
612
- - spec/fixtures/oauth2/authorization_code_body.json
613
- - spec/fixtures/oauth2/access_with_old_refresh.json
614
- - spec/fixtures/oauth2/access_with_refresh.json
615
- - spec/fixtures/oauth2/error.json
616
- - spec/fixtures/oauth2/password_body.json
617
- - spec/fixtures/fields/settings.json
618
- - spec/fixtures/fields/order_a.json
619
- - spec/fixtures/fields/order.json
620
- - spec/fixtures/success.json
621
- - spec/fixtures/session.json
622
- - spec/fixtures/sorts/get.json
623
- - spec/fixtures/oauth2_error.json
624
- - spec/fixtures/base.json
625
- - spec/fixtures/idx_links/get.json
626
- - spec/fixtures/authentication_failure.json
627
- - spec/fixtures/standardfields/nearby.json
628
- - spec/fixtures/standardfields/city.json
629
- - spec/fixtures/standardfields/standardfields.json
630
- - spec/fixtures/standardfields/stateorprovince.json
631
- - spec/fixtures/rules/get.json
632
- - spec/fixtures/finders.json
633
- - spec/fixtures/notes/agent_shared_empty.json
634
- - spec/fixtures/notes/new.json
635
- - spec/fixtures/notes/add.json
636
- - spec/fixtures/notes/agent_shared.json
637
- - spec/fixtures/accounts/office.json
638
608
  - spec/fixtures/accounts/all.json
639
- - spec/fixtures/accounts/my_save.json
640
609
  - spec/fixtures/accounts/my.json
641
610
  - spec/fixtures/accounts/my_portal.json
642
- - spec/fixtures/accounts/password_save.json
643
611
  - spec/fixtures/accounts/my_put.json
612
+ - spec/fixtures/accounts/my_save.json
613
+ - spec/fixtures/accounts/office.json
614
+ - spec/fixtures/accounts/password_save.json
615
+ - spec/fixtures/activities/get.json
616
+ - spec/fixtures/authentication_failure.json
617
+ - spec/fixtures/base.json
618
+ - spec/fixtures/comments/get.json
619
+ - spec/fixtures/comments/new.json
620
+ - spec/fixtures/comments/post.json
621
+ - spec/fixtures/contacts/contacts.json
622
+ - spec/fixtures/contacts/my.json
623
+ - spec/fixtures/contacts/new.json
624
+ - spec/fixtures/contacts/new_empty.json
625
+ - spec/fixtures/contacts/new_notify.json
626
+ - spec/fixtures/contacts/post.json
627
+ - spec/fixtures/contacts/tags.json
628
+ - spec/fixtures/contacts/vow_accounts/edit.json
629
+ - spec/fixtures/contacts/vow_accounts/get.json
630
+ - spec/fixtures/contacts/vow_accounts/new.json
631
+ - spec/fixtures/contacts/vow_accounts/post.json
644
632
  - spec/fixtures/count.json
645
- - spec/fixtures/notifications/notifications.json
646
- - spec/fixtures/notifications/mark_read.json
647
- - spec/fixtures/notifications/post.json
648
- - spec/fixtures/notifications/new.json
649
- - spec/fixtures/notifications/new_empty.json
650
- - spec/fixtures/notifications/unread.json
651
- - spec/fixtures/search_templates/quick_searches/get.json
652
- - spec/fixtures/listing_carts/post.json
653
- - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
654
- - spec/fixtures/listing_carts/post_portal_cart.json
655
- - spec/fixtures/listing_carts/add_listings.json
633
+ - spec/fixtures/empty.json
634
+ - spec/fixtures/errors/expired.json
635
+ - spec/fixtures/errors/failure.json
636
+ - spec/fixtures/errors/failure_with_constraint.json
637
+ - spec/fixtures/errors/failure_with_msg.json
638
+ - spec/fixtures/fields/order.json
639
+ - spec/fixtures/fields/order_a.json
640
+ - spec/fixtures/fields/settings.json
641
+ - spec/fixtures/finders.json
642
+ - spec/fixtures/generic_delete.json
643
+ - spec/fixtures/generic_failure.json
644
+ - spec/fixtures/idx_links/get.json
645
+ - spec/fixtures/listing_carts/add_listing.json
656
646
  - spec/fixtures/listing_carts/add_listing_post.json
647
+ - spec/fixtures/listing_carts/add_listings.json
648
+ - spec/fixtures/listing_carts/add_listings_post.json
657
649
  - spec/fixtures/listing_carts/add_portal_cart_listings.json
650
+ - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
658
651
  - spec/fixtures/listing_carts/empty.json
659
- - spec/fixtures/listing_carts/add_listing.json
660
- - spec/fixtures/listing_carts/put.json
661
- - spec/fixtures/listing_carts/new.json
662
- - spec/fixtures/listing_carts/remove_listing.json
663
- - spec/fixtures/listing_carts/listing_portal_cart.json
664
652
  - spec/fixtures/listing_carts/listing_cart.json
665
- - spec/fixtures/listing_carts/add_listings_post.json
653
+ - spec/fixtures/listing_carts/listing_portal_cart.json
654
+ - spec/fixtures/listing_carts/new.json
666
655
  - spec/fixtures/listing_carts/new_portal_cart.json
667
- - spec/fixtures/listing_carts/put_name.json
656
+ - spec/fixtures/listing_carts/post.json
657
+ - spec/fixtures/listing_carts/post_portal_cart.json
658
+ - spec/fixtures/listing_carts/put.json
668
659
  - spec/fixtures/listing_carts/put_ids.json
669
- - spec/fixtures/activities/get.json
670
- - spec/fixtures/errors/expired.json
671
- - spec/fixtures/errors/failure_with_msg.json
672
- - spec/fixtures/errors/failure.json
673
- - spec/fixtures/errors/failure_with_constraint.json
674
- - spec/fixtures/newsfeeds/meta.json
675
- - spec/fixtures/newsfeeds/inactive.json
676
- - spec/fixtures/newsfeeds/get.json
677
- - spec/fixtures/property_types/property_types.json
678
- - spec/fixtures/empty.json
679
- - spec/fixtures/logo_fbs.png
680
- - spec/fixtures/comments/post.json
681
- - spec/fixtures/comments/new.json
682
- - spec/fixtures/comments/get.json
683
- - spec/fixtures/saved_searches/post.json
684
- - spec/fixtures/saved_searches/update.json
685
- - spec/fixtures/saved_searches/new.json
686
- - spec/fixtures/saved_searches/with_newsfeed.json
687
- - spec/fixtures/saved_searches/get_provided.json
688
- - spec/fixtures/saved_searches/without_newsfeed.json
689
- - spec/fixtures/saved_searches/get.json
690
- - spec/fixtures/saved_searches/with_inactive_newsfeed.json
691
- - spec/fixtures/sharedlinks/success.json
692
- - spec/fixtures/messages/post.json
693
- - spec/fixtures/messages/count.json
694
- - spec/fixtures/messages/new_with_recipients.json
695
- - spec/fixtures/messages/new.json
696
- - spec/fixtures/messages/new_empty.json
697
- - spec/fixtures/messages/get.json
698
- - spec/fixtures/listings/put_reorder_photo.json
699
- - spec/fixtures/listings/reorder_photo.json
660
+ - spec/fixtures/listing_carts/put_name.json
661
+ - spec/fixtures/listing_carts/remove_listing.json
662
+ - spec/fixtures/listing_meta_translations/get.json
700
663
  - spec/fixtures/listings/constraints.json
701
- - spec/fixtures/listings/tour_of_homes_search.json
702
- - spec/fixtures/listings/tour_of_homes.json
703
- - spec/fixtures/listings/no_subresources.json
704
- - spec/fixtures/listings/with_vtour.json
705
- - spec/fixtures/listings/multiple.json
706
- - spec/fixtures/listings/with_documents.json
707
- - spec/fixtures/listings/with_supplement.json
708
- - spec/fixtures/listings/rental_calendar.json
709
- - spec/fixtures/listings/with_rental_calendar.json
710
- - spec/fixtures/listings/put.json
711
- - spec/fixtures/listings/with_permissions.json
712
- - spec/fixtures/listings/with_videos.json
713
- - spec/fixtures/listings/shared_listing_get.json
714
- - spec/fixtures/listings/shared_listing_post.json
715
- - spec/fixtures/listings/shared_listing_new.json
664
+ - spec/fixtures/listings/constraints_with_pagination.json
716
665
  - spec/fixtures/listings/document_index.json
717
- - spec/fixtures/listings/photos/post.json
666
+ - spec/fixtures/listings/multiple.json
667
+ - spec/fixtures/listings/no_subresources.json
668
+ - spec/fixtures/listings/open_houses.json
669
+ - spec/fixtures/listings/photos/batch_delete.json
718
670
  - spec/fixtures/listings/photos/index.json
719
671
  - spec/fixtures/listings/photos/new.json
672
+ - spec/fixtures/listings/photos/post.json
720
673
  - spec/fixtures/listings/photos/rollback.json
721
- - spec/fixtures/listings/photos/batch_delete.json
722
674
  - spec/fixtures/listings/photos/rotate.json
675
+ - spec/fixtures/listings/put.json
723
676
  - spec/fixtures/listings/put_expiration_date.json
724
- - spec/fixtures/listings/with_photos.json
725
- - spec/fixtures/listings/open_houses.json
726
- - spec/fixtures/listings/virtual_tours_index.json
727
- - spec/fixtures/listings/constraints_with_pagination.json
677
+ - spec/fixtures/listings/put_reorder_photo.json
678
+ - spec/fixtures/listings/rental_calendar.json
679
+ - spec/fixtures/listings/reorder_photo.json
680
+ - spec/fixtures/listings/shared_listing_get.json
681
+ - spec/fixtures/listings/shared_listing_new.json
682
+ - spec/fixtures/listings/shared_listing_post.json
683
+ - spec/fixtures/listings/tour_of_homes.json
684
+ - spec/fixtures/listings/tour_of_homes_search.json
728
685
  - spec/fixtures/listings/videos_index.json
686
+ - spec/fixtures/listings/virtual_tours_index.json
687
+ - spec/fixtures/listings/with_documents.json
688
+ - spec/fixtures/listings/with_permissions.json
689
+ - spec/fixtures/listings/with_photos.json
690
+ - spec/fixtures/listings/with_rental_calendar.json
691
+ - spec/fixtures/listings/with_supplement.json
692
+ - spec/fixtures/listings/with_videos.json
693
+ - spec/fixtures/listings/with_vtour.json
694
+ - spec/fixtures/logo_fbs.png
695
+ - spec/fixtures/messages/count.json
696
+ - spec/fixtures/messages/get.json
697
+ - spec/fixtures/messages/new.json
698
+ - spec/fixtures/messages/new_empty.json
699
+ - spec/fixtures/messages/new_with_recipients.json
700
+ - spec/fixtures/messages/post.json
701
+ - spec/fixtures/newsfeeds/get.json
702
+ - spec/fixtures/newsfeeds/inactive.json
703
+ - spec/fixtures/newsfeeds/meta.json
729
704
  - spec/fixtures/no_results.json
705
+ - spec/fixtures/notes/add.json
706
+ - spec/fixtures/notes/agent_shared.json
707
+ - spec/fixtures/notes/agent_shared_empty.json
708
+ - spec/fixtures/notes/new.json
709
+ - spec/fixtures/notifications/mark_read.json
710
+ - spec/fixtures/notifications/new.json
711
+ - spec/fixtures/notifications/new_empty.json
712
+ - spec/fixtures/notifications/notifications.json
713
+ - spec/fixtures/notifications/post.json
714
+ - spec/fixtures/notifications/unread.json
715
+ - spec/fixtures/oauth2/access.json
716
+ - spec/fixtures/oauth2/access_with_old_refresh.json
717
+ - spec/fixtures/oauth2/access_with_refresh.json
718
+ - spec/fixtures/oauth2/authorization_code_body.json
719
+ - spec/fixtures/oauth2/error.json
720
+ - spec/fixtures/oauth2/password_body.json
721
+ - spec/fixtures/oauth2/refresh_body.json
722
+ - spec/fixtures/oauth2_error.json
723
+ - spec/fixtures/portal/disable.json
724
+ - spec/fixtures/portal/enable.json
730
725
  - spec/fixtures/portal/my.json
731
726
  - spec/fixtures/portal/my_non_existant.json
732
- - spec/fixtures/portal/post.json
733
- - spec/fixtures/portal/enable.json
734
727
  - spec/fixtures/portal/new.json
735
- - spec/fixtures/portal/disable.json
736
- - spec/fixtures/contacts/contacts.json
737
- - spec/fixtures/contacts/vow_accounts/edit.json
738
- - spec/fixtures/contacts/vow_accounts/post.json
739
- - spec/fixtures/contacts/vow_accounts/new.json
740
- - spec/fixtures/contacts/vow_accounts/get.json
741
- - spec/fixtures/contacts/my.json
742
- - spec/fixtures/contacts/post.json
743
- - spec/fixtures/contacts/new_notify.json
744
- - spec/fixtures/contacts/new.json
745
- - spec/fixtures/contacts/new_empty.json
746
- - spec/fixtures/contacts/tags.json
747
- - spec/fixtures/generic_failure.json
748
- - spec/unit/spark_api/paginate_spec.rb
749
- - spec/unit/spark_api/primary_array_spec.rb
750
- - spec/unit/spark_api/configuration/yaml_spec.rb
751
- - spec/unit/spark_api/options_hash_spec.rb
752
- - spec/unit/spark_api/faraday_middleware_spec.rb
753
- - spec/unit/spark_api/authentication_spec.rb
754
- - spec/unit/spark_api/multi_client_spec.rb
728
+ - spec/fixtures/portal/post.json
729
+ - spec/fixtures/property_types/property_types.json
730
+ - spec/fixtures/rules/get.json
731
+ - spec/fixtures/saved_searches/get.json
732
+ - spec/fixtures/saved_searches/get_provided.json
733
+ - spec/fixtures/saved_searches/new.json
734
+ - spec/fixtures/saved_searches/post.json
735
+ - spec/fixtures/saved_searches/update.json
736
+ - spec/fixtures/saved_searches/with_inactive_newsfeed.json
737
+ - spec/fixtures/saved_searches/with_newsfeed.json
738
+ - spec/fixtures/saved_searches/without_newsfeed.json
739
+ - spec/fixtures/search_templates/quick_searches/get.json
740
+ - spec/fixtures/session.json
741
+ - spec/fixtures/sharedlinks/success.json
742
+ - spec/fixtures/sorts/get.json
743
+ - spec/fixtures/standardfields/city.json
744
+ - spec/fixtures/standardfields/nearby.json
745
+ - spec/fixtures/standardfields/standardfields.json
746
+ - spec/fixtures/standardfields/stateorprovince.json
747
+ - spec/fixtures/success.json
755
748
  - spec/unit/spark_api/authentication/api_auth_spec.rb
749
+ - spec/unit/spark_api/authentication/base_auth_spec.rb
756
750
  - spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
757
- - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
758
751
  - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
752
+ - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
759
753
  - spec/unit/spark_api/authentication/oauth2_spec.rb
760
- - spec/unit/spark_api/authentication/base_auth_spec.rb
754
+ - spec/unit/spark_api/authentication_spec.rb
755
+ - spec/unit/spark_api/configuration/yaml_spec.rb
761
756
  - spec/unit/spark_api/configuration_spec.rb
762
- - spec/unit/spark_api/request_spec.rb
757
+ - spec/unit/spark_api/faraday_middleware_spec.rb
758
+ - spec/unit/spark_api/models/account_report_spec.rb
759
+ - spec/unit/spark_api/models/account_spec.rb
760
+ - spec/unit/spark_api/models/activity_spec.rb
761
+ - spec/unit/spark_api/models/base_spec.rb
762
+ - spec/unit/spark_api/models/concerns/destroyable_spec.rb
763
+ - spec/unit/spark_api/models/concerns/savable_spec.rb
764
+ - spec/unit/spark_api/models/connect_prefs_spec.rb
765
+ - spec/unit/spark_api/models/constraint_spec.rb
766
+ - spec/unit/spark_api/models/contact_spec.rb
763
767
  - spec/unit/spark_api/models/defaultable_spec.rb
764
- - spec/unit/spark_api/models/news_feed_meta_spec.rb
765
- - spec/unit/spark_api/models/open_house_spec.rb
766
- - spec/unit/spark_api/models/document_spec.rb
767
- - spec/unit/spark_api/models/system_info_spec.rb
768
- - spec/unit/spark_api/models/virtual_tour_spec.rb
769
- - spec/unit/spark_api/models/rental_calendar_spec.rb
770
- - spec/unit/spark_api/models/listing_cart_spec.rb
771
768
  - spec/unit/spark_api/models/dirty_spec.rb
772
- - spec/unit/spark_api/models/standard_fields_spec.rb
773
- - spec/unit/spark_api/models/shared_listing_spec.rb
769
+ - spec/unit/spark_api/models/document_spec.rb
770
+ - spec/unit/spark_api/models/email_link_spec.rb
771
+ - spec/unit/spark_api/models/fields_spec.rb
774
772
  - spec/unit/spark_api/models/finders_spec.rb
775
- - spec/unit/spark_api/models/account_spec.rb
773
+ - spec/unit/spark_api/models/listing_cart_spec.rb
776
774
  - spec/unit/spark_api/models/listing_meta_translations_spec.rb
777
775
  - spec/unit/spark_api/models/listing_spec.rb
778
- - spec/unit/spark_api/models/video_spec.rb
779
- - spec/unit/spark_api/models/shared_link_spec.rb
780
- - spec/unit/spark_api/models/account_report_spec.rb
781
- - spec/unit/spark_api/models/sort_spec.rb
782
- - spec/unit/spark_api/models/saved_search_spec.rb
783
- - spec/unit/spark_api/models/contact_spec.rb
784
- - spec/unit/spark_api/models/email_link_spec.rb
785
- - spec/unit/spark_api/models/portal_spec.rb
786
776
  - spec/unit/spark_api/models/message_spec.rb
787
- - spec/unit/spark_api/models/constraint_spec.rb
788
- - spec/unit/spark_api/models/tour_of_home_spec.rb
789
- - spec/unit/spark_api/models/photo_spec.rb
790
- - spec/unit/spark_api/models/notification_spec.rb
791
- - spec/unit/spark_api/models/note_spec.rb
792
- - spec/unit/spark_api/models/connect_prefs_spec.rb
777
+ - spec/unit/spark_api/models/news_feed_meta_spec.rb
793
778
  - spec/unit/spark_api/models/newsfeed_spec.rb
779
+ - spec/unit/spark_api/models/note_spec.rb
780
+ - spec/unit/spark_api/models/notification_spec.rb
781
+ - spec/unit/spark_api/models/open_house_spec.rb
782
+ - spec/unit/spark_api/models/photo_spec.rb
783
+ - spec/unit/spark_api/models/portal_spec.rb
784
+ - spec/unit/spark_api/models/property_types_spec.rb
785
+ - spec/unit/spark_api/models/rental_calendar_spec.rb
794
786
  - spec/unit/spark_api/models/rule_spec.rb
795
- - spec/unit/spark_api/models/fields_spec.rb
796
- - spec/unit/spark_api/models/concerns/destroyable_spec.rb
797
- - spec/unit/spark_api/models/concerns/savable_spec.rb
787
+ - spec/unit/spark_api/models/saved_search_spec.rb
798
788
  - spec/unit/spark_api/models/search_template/quick_search_spec.rb
799
- - spec/unit/spark_api/models/property_types_spec.rb
800
- - spec/unit/spark_api/models/base_spec.rb
789
+ - spec/unit/spark_api/models/shared_link_spec.rb
790
+ - spec/unit/spark_api/models/shared_listing_spec.rb
791
+ - spec/unit/spark_api/models/sort_spec.rb
792
+ - spec/unit/spark_api/models/standard_fields_spec.rb
801
793
  - spec/unit/spark_api/models/subresource_spec.rb
794
+ - spec/unit/spark_api/models/system_info_spec.rb
795
+ - spec/unit/spark_api/models/tour_of_home_spec.rb
796
+ - spec/unit/spark_api/models/video_spec.rb
797
+ - spec/unit/spark_api/models/virtual_tour_spec.rb
802
798
  - spec/unit/spark_api/models/vow_account_spec.rb
803
- - spec/unit/spark_api/models/activity_spec.rb
799
+ - spec/unit/spark_api/multi_client_spec.rb
800
+ - spec/unit/spark_api/options_hash_spec.rb
801
+ - spec/unit/spark_api/paginate_spec.rb
802
+ - spec/unit/spark_api/primary_array_spec.rb
803
+ - spec/unit/spark_api/request_spec.rb
804
804
  - spec/unit/spark_api_spec.rb
805
805
  - spec/spec_helper.rb