spark_api 1.5.3 → 1.5.4

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,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a99d333efb4d06b28966e72fde3baa3b0576ca30249baa555a1dbb613616d78
4
- data.tar.gz: 9b83e6b6d097af7a0bd559121ab9bc702154d1a8afd39f2f9c59474946436c48
3
+ metadata.gz: 3027a80b349e435252ad94cde1fd6b8e2045d5350250f29b582b6d7392d7da3e
4
+ data.tar.gz: 9464e6b802ee47398ecebb940776947a34f0f90390bf421a766021c11a1ea7cd
5
5
  SHA512:
6
- metadata.gz: 51f1a951daccd3cabed8ffb0fd3abbf3c7f0b2be7bdd55453e8a806341f0a4c06c0f5073cf5f2c1b07d3dcdd4bd265274d2441b91e268414eba4b52b01e72c51
7
- data.tar.gz: 12b0fabf1ab8dab5d8871b4176ec6c2ec4b094a7713ab29e34f1c37f14a67e4aad69bb212a2bf94ff8d9d53298062010d13067054841a96b96a43bf268ff42b6
6
+ metadata.gz: 4492a3dcb079b0c8a062a26232d9d7a6f3d46a05041696f37c580db654af46e9cbc01cbe25bcc58cae2eb3085c94395b1da74d8d88e9ffc76fc72aa38319080b
7
+ data.tar.gz: e551671321c8a26837677b76af2ee98e4877beaca9b655cc94ef0a65766b68c96695af399f812160f68e28c828d1332152ced85619e907f42912005ad34b334a
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.3
1
+ 1.5.4
@@ -29,7 +29,11 @@ module SparkApi
29
29
  if paging.nil?
30
30
  results = response
31
31
  else
32
- q = CGI.parse(env[:url].query)
32
+ q = if http_method_override_request?(env)
33
+ CGI.parse(env[:request_body])
34
+ else
35
+ CGI.parse(env[:url].query)
36
+ end
33
37
  if q.key?("_pagination") && q["_pagination"].first == "count"
34
38
  results = paging['TotalRows']
35
39
  else
@@ -87,7 +91,13 @@ module SparkApi
87
91
 
88
92
  env[:body]
89
93
  end
90
-
94
+
95
+ private
96
+
97
+ def http_method_override_request?(env)
98
+ env[:request_headers]["X-HTTP-Method-Override"] == "GET"
99
+ end
100
+
91
101
  end
92
102
 
93
103
  Faraday::Response.register_middleware :spark_api => FaradayMiddleware
@@ -181,6 +181,12 @@ describe Listing do
181
181
  count = Listing.count()
182
182
  expect(count).to eq(2001)
183
183
  end
184
+
185
+ on_get_it "should return the count even if http_method_override: true is passed" do
186
+ stub_api_post('/listings', '_pagination=count', 'count.json')
187
+ count = Listing.count(http_method_override: true)
188
+ expect(count).to eq(2001)
189
+ end
184
190
  end
185
191
 
186
192
  context "/listings/<listing_id>", :support do
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.5.3
4
+ version: 1.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Hornseth
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-08-25 00:00:00.000000000 Z
12
+ date: 2021-11-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
@@ -539,203 +539,203 @@ signing_key:
539
539
  specification_version: 4
540
540
  summary: A library for interacting with the Spark web services.
541
541
  test_files:
542
- - spec/fixtures/activities/get.json
543
- - spec/fixtures/listing_meta_translations/get.json
544
- - spec/fixtures/errors/failure.json
545
- - spec/fixtures/errors/expired.json
546
- - spec/fixtures/errors/failure_with_msg.json
547
- - spec/fixtures/errors/failure_with_constraint.json
548
- - spec/fixtures/notifications/new.json
549
- - spec/fixtures/notifications/new_empty.json
542
+ - spec/fixtures/comments/post.json
543
+ - spec/fixtures/comments/get.json
544
+ - spec/fixtures/comments/new.json
545
+ - spec/fixtures/sharedlinks/success.json
546
+ - spec/fixtures/idx_links/get.json
547
+ - spec/fixtures/listing_carts/new_portal_cart.json
548
+ - spec/fixtures/listing_carts/post.json
549
+ - spec/fixtures/listing_carts/put.json
550
+ - spec/fixtures/listing_carts/remove_listing.json
551
+ - spec/fixtures/listing_carts/post_portal_cart.json
552
+ - spec/fixtures/listing_carts/listing_cart.json
553
+ - spec/fixtures/listing_carts/add_listing.json
554
+ - spec/fixtures/listing_carts/put_ids.json
555
+ - spec/fixtures/listing_carts/add_portal_cart_listings.json
556
+ - spec/fixtures/listing_carts/new.json
557
+ - spec/fixtures/listing_carts/add_listing_post.json
558
+ - spec/fixtures/listing_carts/add_listings.json
559
+ - spec/fixtures/listing_carts/listing_portal_cart.json
560
+ - spec/fixtures/listing_carts/empty.json
561
+ - spec/fixtures/listing_carts/add_listings_post.json
562
+ - spec/fixtures/listing_carts/put_name.json
563
+ - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
564
+ - spec/fixtures/fields/order_a.json
565
+ - spec/fixtures/fields/order.json
566
+ - spec/fixtures/fields/settings.json
567
+ - spec/fixtures/newsfeeds/get.json
568
+ - spec/fixtures/newsfeeds/inactive.json
569
+ - spec/fixtures/newsfeeds/meta.json
570
+ - spec/fixtures/authentication_failure.json
571
+ - spec/fixtures/generic_failure.json
572
+ - spec/fixtures/notes/agent_shared_empty.json
573
+ - spec/fixtures/notes/add.json
574
+ - spec/fixtures/notes/new.json
575
+ - spec/fixtures/notes/agent_shared.json
576
+ - spec/fixtures/finders.json
550
577
  - spec/fixtures/notifications/post.json
551
- - spec/fixtures/notifications/notifications.json
552
578
  - spec/fixtures/notifications/unread.json
579
+ - spec/fixtures/notifications/new.json
553
580
  - spec/fixtures/notifications/mark_read.json
554
- - spec/fixtures/listings/tour_of_homes_search.json
555
- - spec/fixtures/listings/multiple.json
556
- - spec/fixtures/listings/virtual_tours_index.json
557
- - spec/fixtures/listings/shared_listing_post.json
558
- - spec/fixtures/listings/with_videos.json
559
- - spec/fixtures/listings/reorder_photo.json
560
- - spec/fixtures/listings/open_houses.json
561
- - spec/fixtures/listings/tour_of_homes.json
562
- - spec/fixtures/listings/photos/new.json
563
- - spec/fixtures/listings/photos/batch_delete.json
564
- - spec/fixtures/listings/photos/post.json
565
- - spec/fixtures/listings/photos/rollback.json
566
- - spec/fixtures/listings/photos/index.json
567
- - spec/fixtures/listings/photos/rotate.json
568
- - spec/fixtures/listings/with_vtour.json
569
- - spec/fixtures/listings/put.json
570
- - spec/fixtures/listings/floplans_index.json
571
- - spec/fixtures/listings/videos_index.json
572
- - spec/fixtures/listings/constraints_with_pagination.json
573
- - spec/fixtures/listings/document_index.json
574
- - spec/fixtures/listings/constraints.json
575
- - spec/fixtures/listings/with_permissions.json
576
- - spec/fixtures/listings/rental_calendar.json
577
- - spec/fixtures/listings/with_rental_calendar.json
578
- - spec/fixtures/listings/shared_listing_get.json
579
- - spec/fixtures/listings/put_reorder_photo.json
580
- - spec/fixtures/listings/shared_listing_new.json
581
- - spec/fixtures/listings/put_expiration_date.json
582
- - spec/fixtures/listings/with_supplement.json
583
- - spec/fixtures/listings/with_documents.json
584
- - spec/fixtures/listings/with_photos.json
585
- - spec/fixtures/listings/no_subresources.json
586
- - spec/fixtures/messages/new.json
587
- - spec/fixtures/messages/new_empty.json
581
+ - spec/fixtures/notifications/notifications.json
582
+ - spec/fixtures/notifications/new_empty.json
583
+ - spec/fixtures/contacts/post.json
584
+ - spec/fixtures/contacts/vow_accounts/post.json
585
+ - spec/fixtures/contacts/vow_accounts/edit.json
586
+ - spec/fixtures/contacts/vow_accounts/get.json
587
+ - spec/fixtures/contacts/vow_accounts/new.json
588
+ - spec/fixtures/contacts/new.json
589
+ - spec/fixtures/contacts/my.json
590
+ - spec/fixtures/contacts/new_notify.json
591
+ - spec/fixtures/contacts/new_empty.json
592
+ - spec/fixtures/contacts/contacts.json
593
+ - spec/fixtures/contacts/tags.json
594
+ - spec/fixtures/errors/failure_with_constraint.json
595
+ - spec/fixtures/errors/failure.json
596
+ - spec/fixtures/errors/expired.json
597
+ - spec/fixtures/errors/failure_with_msg.json
588
598
  - spec/fixtures/messages/post.json
589
- - spec/fixtures/messages/count.json
590
599
  - spec/fixtures/messages/new_with_recipients.json
591
600
  - spec/fixtures/messages/get.json
592
- - spec/fixtures/logo_fbs.png
593
- - spec/fixtures/oauth2/access_with_refresh.json
594
- - spec/fixtures/oauth2/access_with_old_refresh.json
595
- - spec/fixtures/oauth2/access.json
596
- - spec/fixtures/oauth2/refresh_body.json
597
- - spec/fixtures/oauth2/password_body.json
598
- - spec/fixtures/oauth2/authorization_code_body.json
599
- - spec/fixtures/oauth2/error.json
600
- - spec/fixtures/comments/new.json
601
- - spec/fixtures/comments/post.json
602
- - spec/fixtures/comments/get.json
603
- - spec/fixtures/success.json
604
- - spec/fixtures/notes/new.json
605
- - spec/fixtures/notes/agent_shared_empty.json
606
- - spec/fixtures/notes/add.json
607
- - spec/fixtures/notes/agent_shared.json
608
- - spec/fixtures/count.json
609
- - spec/fixtures/accounts/my.json
610
- - spec/fixtures/accounts/office.json
611
- - spec/fixtures/accounts/my_portal.json
601
+ - spec/fixtures/messages/new.json
602
+ - spec/fixtures/messages/count.json
603
+ - spec/fixtures/messages/new_empty.json
604
+ - spec/fixtures/activities/get.json
605
+ - spec/fixtures/base.json
612
606
  - spec/fixtures/accounts/my_put.json
607
+ - spec/fixtures/accounts/office.json
608
+ - spec/fixtures/accounts/all.json
609
+ - spec/fixtures/accounts/my.json
613
610
  - spec/fixtures/accounts/password_save.json
611
+ - spec/fixtures/accounts/my_portal.json
614
612
  - spec/fixtures/accounts/my_save.json
615
- - spec/fixtures/accounts/all.json
616
- - spec/fixtures/sharedlinks/success.json
617
- - spec/fixtures/finders.json
618
- - spec/fixtures/authentication_failure.json
619
- - spec/fixtures/idx_links/get.json
620
- - spec/fixtures/session.json
613
+ - spec/fixtures/oauth2_error.json
621
614
  - spec/fixtures/property_types/property_types.json
622
- - spec/fixtures/saved_searches/new.json
623
- - spec/fixtures/saved_searches/update.json
615
+ - spec/fixtures/portal/post.json
616
+ - spec/fixtures/portal/disable.json
617
+ - spec/fixtures/portal/new.json
618
+ - spec/fixtures/portal/my_non_existant.json
619
+ - spec/fixtures/portal/enable.json
620
+ - spec/fixtures/portal/my.json
621
+ - spec/fixtures/oauth2/refresh_body.json
622
+ - spec/fixtures/oauth2/error.json
623
+ - spec/fixtures/oauth2/access_with_refresh.json
624
+ - spec/fixtures/oauth2/access.json
625
+ - spec/fixtures/oauth2/authorization_code_body.json
626
+ - spec/fixtures/oauth2/password_body.json
627
+ - spec/fixtures/oauth2/access_with_old_refresh.json
628
+ - spec/fixtures/sorts/get.json
629
+ - spec/fixtures/search_templates/quick_searches/get.json
630
+ - spec/fixtures/success.json
631
+ - spec/fixtures/no_results.json
624
632
  - spec/fixtures/saved_searches/post.json
625
- - spec/fixtures/saved_searches/without_newsfeed.json
626
633
  - spec/fixtures/saved_searches/with_newsfeed.json
627
- - spec/fixtures/saved_searches/get_provided.json
628
634
  - spec/fixtures/saved_searches/with_inactive_newsfeed.json
629
635
  - spec/fixtures/saved_searches/get.json
630
- - spec/fixtures/search_templates/quick_searches/get.json
631
- - spec/fixtures/standardfields/city.json
636
+ - spec/fixtures/saved_searches/new.json
637
+ - spec/fixtures/saved_searches/update.json
638
+ - spec/fixtures/saved_searches/without_newsfeed.json
639
+ - spec/fixtures/saved_searches/get_provided.json
640
+ - spec/fixtures/count.json
641
+ - spec/fixtures/generic_delete.json
642
+ - spec/fixtures/logo_fbs.png
643
+ - spec/fixtures/empty.json
632
644
  - spec/fixtures/standardfields/standardfields.json
633
645
  - spec/fixtures/standardfields/stateorprovince.json
646
+ - spec/fixtures/standardfields/city.json
634
647
  - spec/fixtures/standardfields/nearby.json
635
- - spec/fixtures/generic_delete.json
636
- - spec/fixtures/fields/order_a.json
637
- - spec/fixtures/fields/settings.json
638
- - spec/fixtures/fields/order.json
639
- - spec/fixtures/contacts/my.json
640
- - spec/fixtures/contacts/new.json
641
- - spec/fixtures/contacts/new_notify.json
642
- - spec/fixtures/contacts/new_empty.json
643
- - spec/fixtures/contacts/post.json
644
- - spec/fixtures/contacts/contacts.json
645
- - spec/fixtures/contacts/vow_accounts/new.json
646
- - spec/fixtures/contacts/vow_accounts/post.json
647
- - spec/fixtures/contacts/vow_accounts/get.json
648
- - spec/fixtures/contacts/vow_accounts/edit.json
649
- - spec/fixtures/contacts/tags.json
648
+ - spec/fixtures/listing_meta_translations/get.json
650
649
  - spec/fixtures/rules/get.json
651
- - spec/fixtures/newsfeeds/inactive.json
652
- - spec/fixtures/newsfeeds/meta.json
653
- - spec/fixtures/newsfeeds/get.json
654
- - spec/fixtures/listing_carts/post_portal_cart.json
655
- - spec/fixtures/listing_carts/listing_portal_cart.json
656
- - spec/fixtures/listing_carts/put_ids.json
657
- - spec/fixtures/listing_carts/new.json
658
- - spec/fixtures/listing_carts/add_listings.json
659
- - spec/fixtures/listing_carts/post.json
660
- - spec/fixtures/listing_carts/put.json
661
- - spec/fixtures/listing_carts/add_listing_post.json
662
- - spec/fixtures/listing_carts/new_portal_cart.json
663
- - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
664
- - spec/fixtures/listing_carts/put_name.json
665
- - spec/fixtures/listing_carts/add_listings_post.json
666
- - spec/fixtures/listing_carts/remove_listing.json
667
- - spec/fixtures/listing_carts/add_listing.json
668
- - spec/fixtures/listing_carts/add_portal_cart_listings.json
669
- - spec/fixtures/listing_carts/empty.json
670
- - spec/fixtures/listing_carts/listing_cart.json
671
- - spec/fixtures/portal/my.json
672
- - spec/fixtures/portal/new.json
673
- - spec/fixtures/portal/post.json
674
- - spec/fixtures/portal/disable.json
675
- - spec/fixtures/portal/my_non_existant.json
676
- - spec/fixtures/portal/enable.json
677
- - spec/fixtures/no_results.json
678
- - spec/fixtures/base.json
679
- - spec/fixtures/empty.json
680
- - spec/fixtures/generic_failure.json
681
- - spec/fixtures/sorts/get.json
682
- - spec/fixtures/oauth2_error.json
683
- - spec/unit/spark_api_spec.rb
650
+ - spec/fixtures/listings/rental_calendar.json
651
+ - spec/fixtures/listings/shared_listing_new.json
652
+ - spec/fixtures/listings/put.json
653
+ - spec/fixtures/listings/virtual_tours_index.json
654
+ - spec/fixtures/listings/no_subresources.json
655
+ - spec/fixtures/listings/videos_index.json
656
+ - spec/fixtures/listings/tour_of_homes_search.json
657
+ - spec/fixtures/listings/with_videos.json
658
+ - spec/fixtures/listings/photos/post.json
659
+ - spec/fixtures/listings/photos/rotate.json
660
+ - spec/fixtures/listings/photos/rollback.json
661
+ - spec/fixtures/listings/photos/new.json
662
+ - spec/fixtures/listings/photos/index.json
663
+ - spec/fixtures/listings/photos/batch_delete.json
664
+ - spec/fixtures/listings/constraints.json
665
+ - spec/fixtures/listings/document_index.json
666
+ - spec/fixtures/listings/with_vtour.json
667
+ - spec/fixtures/listings/tour_of_homes.json
668
+ - spec/fixtures/listings/reorder_photo.json
669
+ - spec/fixtures/listings/open_houses.json
670
+ - spec/fixtures/listings/with_photos.json
671
+ - spec/fixtures/listings/constraints_with_pagination.json
672
+ - spec/fixtures/listings/shared_listing_get.json
673
+ - spec/fixtures/listings/put_reorder_photo.json
674
+ - spec/fixtures/listings/put_expiration_date.json
675
+ - spec/fixtures/listings/with_supplement.json
676
+ - spec/fixtures/listings/with_rental_calendar.json
677
+ - spec/fixtures/listings/shared_listing_post.json
678
+ - spec/fixtures/listings/floplans_index.json
679
+ - spec/fixtures/listings/with_permissions.json
680
+ - spec/fixtures/listings/with_documents.json
681
+ - spec/fixtures/listings/multiple.json
682
+ - spec/fixtures/session.json
684
683
  - spec/unit/spark_api/multi_client_spec.rb
685
- - spec/unit/spark_api/request_spec.rb
684
+ - spec/unit/spark_api/authentication/api_auth_spec.rb
685
+ - spec/unit/spark_api/authentication/oauth2_spec.rb
686
+ - spec/unit/spark_api/authentication/base_auth_spec.rb
687
+ - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
688
+ - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
689
+ - spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
686
690
  - spec/unit/spark_api/paginate_spec.rb
691
+ - spec/unit/spark_api/primary_array_spec.rb
692
+ - spec/unit/spark_api/configuration_spec.rb
687
693
  - spec/unit/spark_api/configuration/yaml_spec.rb
688
694
  - spec/unit/spark_api/authentication_spec.rb
689
- - spec/unit/spark_api/models/document_spec.rb
690
- - spec/unit/spark_api/models/newsfeed_spec.rb
695
+ - spec/unit/spark_api/request_spec.rb
696
+ - spec/unit/spark_api/options_hash_spec.rb
697
+ - spec/unit/spark_api/models/defaultable_spec.rb
698
+ - spec/unit/spark_api/models/portal_spec.rb
699
+ - spec/unit/spark_api/models/rule_spec.rb
691
700
  - spec/unit/spark_api/models/fields_spec.rb
692
- - spec/unit/spark_api/models/concerns/destroyable_spec.rb
693
- - spec/unit/spark_api/models/concerns/savable_spec.rb
694
- - spec/unit/spark_api/models/listing_meta_translations_spec.rb
695
- - spec/unit/spark_api/models/notification_spec.rb
696
- - spec/unit/spark_api/models/property_types_spec.rb
697
- - spec/unit/spark_api/models/vow_account_spec.rb
698
- - spec/unit/spark_api/models/rental_calendar_spec.rb
699
- - spec/unit/spark_api/models/shared_link_spec.rb
700
701
  - spec/unit/spark_api/models/saved_search_spec.rb
702
+ - spec/unit/spark_api/models/vow_account_spec.rb
703
+ - spec/unit/spark_api/models/account_report_spec.rb
701
704
  - spec/unit/spark_api/models/floplan_spec.rb
702
- - spec/unit/spark_api/models/base_spec.rb
703
- - spec/unit/spark_api/models/portal_spec.rb
704
- - spec/unit/spark_api/models/shared_listing_spec.rb
705
- - spec/unit/spark_api/models/dirty_spec.rb
706
- - spec/unit/spark_api/models/photo_spec.rb
707
- - spec/unit/spark_api/models/standard_fields_spec.rb
705
+ - spec/unit/spark_api/models/listing_cart_spec.rb
706
+ - spec/unit/spark_api/models/message_spec.rb
707
+ - spec/unit/spark_api/models/news_feed_meta_spec.rb
708
+ - spec/unit/spark_api/models/rental_calendar_spec.rb
708
709
  - spec/unit/spark_api/models/constraint_spec.rb
709
710
  - spec/unit/spark_api/models/search_template/quick_search_spec.rb
710
- - spec/unit/spark_api/models/system_info_spec.rb
711
- - spec/unit/spark_api/models/news_feed_meta_spec.rb
712
- - spec/unit/spark_api/models/video_spec.rb
713
- - spec/unit/spark_api/models/virtual_tour_spec.rb
711
+ - spec/unit/spark_api/models/newsfeed_spec.rb
712
+ - spec/unit/spark_api/models/tour_of_home_spec.rb
713
+ - spec/unit/spark_api/models/concerns/destroyable_spec.rb
714
+ - spec/unit/spark_api/models/concerns/savable_spec.rb
715
+ - spec/unit/spark_api/models/document_spec.rb
714
716
  - spec/unit/spark_api/models/connect_prefs_spec.rb
717
+ - spec/unit/spark_api/models/standard_fields_spec.rb
718
+ - spec/unit/spark_api/models/shared_listing_spec.rb
719
+ - spec/unit/spark_api/models/notification_spec.rb
720
+ - spec/unit/spark_api/models/subresource_spec.rb
721
+ - spec/unit/spark_api/models/shared_link_spec.rb
722
+ - spec/unit/spark_api/models/property_types_spec.rb
723
+ - spec/unit/spark_api/models/listing_meta_translations_spec.rb
724
+ - spec/unit/spark_api/models/virtual_tour_spec.rb
725
+ - spec/unit/spark_api/models/system_info_spec.rb
726
+ - spec/unit/spark_api/models/listing_spec.rb
727
+ - spec/unit/spark_api/models/base_spec.rb
715
728
  - spec/unit/spark_api/models/account_spec.rb
716
729
  - spec/unit/spark_api/models/sort_spec.rb
717
- - spec/unit/spark_api/models/listing_cart_spec.rb
730
+ - spec/unit/spark_api/models/video_spec.rb
731
+ - spec/unit/spark_api/models/photo_spec.rb
732
+ - spec/unit/spark_api/models/open_house_spec.rb
733
+ - spec/unit/spark_api/models/dirty_spec.rb
718
734
  - spec/unit/spark_api/models/note_spec.rb
719
- - spec/unit/spark_api/models/subresource_spec.rb
720
- - spec/unit/spark_api/models/listing_spec.rb
721
- - spec/unit/spark_api/models/account_report_spec.rb
722
- - spec/unit/spark_api/models/defaultable_spec.rb
723
735
  - spec/unit/spark_api/models/finders_spec.rb
724
- - spec/unit/spark_api/models/rule_spec.rb
725
- - spec/unit/spark_api/models/message_spec.rb
736
+ - spec/unit/spark_api/models/activity_spec.rb
726
737
  - spec/unit/spark_api/models/contact_spec.rb
727
- - spec/unit/spark_api/models/open_house_spec.rb
728
738
  - spec/unit/spark_api/models/email_link_spec.rb
729
- - spec/unit/spark_api/models/tour_of_home_spec.rb
730
- - spec/unit/spark_api/models/activity_spec.rb
731
- - spec/unit/spark_api/primary_array_spec.rb
732
- - spec/unit/spark_api/configuration_spec.rb
733
- - spec/unit/spark_api/options_hash_spec.rb
734
- - spec/unit/spark_api/authentication/base_auth_spec.rb
735
- - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
736
- - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
737
- - spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
738
- - spec/unit/spark_api/authentication/oauth2_spec.rb
739
- - spec/unit/spark_api/authentication/api_auth_spec.rb
740
739
  - spec/unit/spark_api/faraday_middleware_spec.rb
740
+ - spec/unit/spark_api_spec.rb
741
741
  - spec/spec_helper.rb