spark_api 1.5.6 → 1.5.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/script/bootstrap +3 -2
- data/spec/unit/spark_api/models/defaultable_spec.rb +3 -2
- metadata +178 -158
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d4131f03016f01954473ff13da4f6eaa5b3e449467014e1f0724499749bf017
|
4
|
+
data.tar.gz: 1512fd78baf9b9fa6b62d7be62c9d54b7b4c16fabdec4f114b8c25c785970e46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16535b943347c4c5118ed263e6e8d18dc46a27a9e79aa15e4cd2c02ccdeec712264132484809aa615949419d3260144763de353caec929b6d26ed7e5d4941803
|
7
|
+
data.tar.gz: 79b6a7b6fb8984045b64ead26347673591c0a6a7075c33dd310ba246047dc7d9c36146d2cef2cff699ab18ef1be0a6e21f8ba1f173316f49f3c87e69c9f712e9
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.5.
|
1
|
+
1.5.7
|
data/script/bootstrap
CHANGED
@@ -44,8 +44,9 @@ describe Defaultable do
|
|
44
44
|
end
|
45
45
|
|
46
46
|
it "passes options to 'default'" do
|
47
|
-
|
48
|
-
TestClass.
|
47
|
+
args = { foo: true }
|
48
|
+
expect(TestClass).to receive(:default).with(args)
|
49
|
+
TestClass.find(TestClass::DEFAULT_ID, args)
|
49
50
|
end
|
50
51
|
|
51
52
|
it "calls Finders.find when given a normal id" 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.
|
4
|
+
version: 1.5.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brandon Hornseth
|
@@ -9,8 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-
|
12
|
+
date: 2022-10-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: addressable
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">="
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '0'
|
21
|
+
type: :runtime
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '0'
|
14
28
|
- !ruby/object:Gem::Dependency
|
15
29
|
name: faraday
|
16
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -18,6 +32,9 @@ dependencies:
|
|
18
32
|
- - ">="
|
19
33
|
- !ruby/object:Gem::Version
|
20
34
|
version: 0.17.3
|
35
|
+
- - "<"
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '2.0'
|
21
38
|
type: :runtime
|
22
39
|
prerelease: false
|
23
40
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -25,6 +42,9 @@ dependencies:
|
|
25
42
|
- - ">="
|
26
43
|
- !ruby/object:Gem::Version
|
27
44
|
version: 0.17.3
|
45
|
+
- - "<"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '2.0'
|
28
48
|
- !ruby/object:Gem::Dependency
|
29
49
|
name: multi_json
|
30
50
|
requirement: !ruby/object:Gem::Requirement
|
@@ -539,203 +559,203 @@ signing_key:
|
|
539
559
|
specification_version: 4
|
540
560
|
summary: A library for interacting with the Spark web services.
|
541
561
|
test_files:
|
542
|
-
- spec/fixtures/
|
543
|
-
- spec/fixtures/
|
544
|
-
- spec/fixtures/
|
545
|
-
- spec/fixtures/
|
546
|
-
- spec/fixtures/errors/failure.json
|
547
|
-
- spec/fixtures/errors/expired.json
|
548
|
-
- spec/fixtures/errors/failure_with_constraint.json
|
549
|
-
- spec/fixtures/property_types/property_types.json
|
550
|
-
- spec/fixtures/listing_carts/put.json
|
562
|
+
- spec/fixtures/idx_links/get.json
|
563
|
+
- spec/fixtures/session.json
|
564
|
+
- spec/fixtures/listing_carts/listing_portal_cart.json
|
565
|
+
- spec/fixtures/listing_carts/remove_listing.json
|
551
566
|
- spec/fixtures/listing_carts/post.json
|
552
|
-
- spec/fixtures/listing_carts/put_name.json
|
553
|
-
- spec/fixtures/listing_carts/add_portal_cart_listings.json
|
554
|
-
- spec/fixtures/listing_carts/listing_cart.json
|
555
|
-
- spec/fixtures/listing_carts/new_portal_cart.json
|
556
567
|
- spec/fixtures/listing_carts/put_ids.json
|
557
|
-
- spec/fixtures/listing_carts/
|
558
|
-
- spec/fixtures/listing_carts/remove_listing.json
|
559
|
-
- spec/fixtures/listing_carts/add_listing_post.json
|
560
|
-
- spec/fixtures/listing_carts/add_listing.json
|
568
|
+
- spec/fixtures/listing_carts/new_portal_cart.json
|
561
569
|
- spec/fixtures/listing_carts/add_portal_cart_listings_post.json
|
570
|
+
- spec/fixtures/listing_carts/listing_cart.json
|
571
|
+
- spec/fixtures/listing_carts/put_name.json
|
572
|
+
- spec/fixtures/listing_carts/new.json
|
573
|
+
- spec/fixtures/listing_carts/add_portal_cart_listings.json
|
562
574
|
- spec/fixtures/listing_carts/empty.json
|
563
|
-
- spec/fixtures/listing_carts/add_listings.json
|
564
575
|
- spec/fixtures/listing_carts/post_portal_cart.json
|
565
|
-
- spec/fixtures/listing_carts/
|
576
|
+
- spec/fixtures/listing_carts/add_listing.json
|
577
|
+
- spec/fixtures/listing_carts/put.json
|
566
578
|
- spec/fixtures/listing_carts/add_listings_post.json
|
567
|
-
- spec/fixtures/
|
568
|
-
- spec/fixtures/
|
569
|
-
- spec/fixtures/
|
570
|
-
- spec/fixtures/
|
571
|
-
- spec/fixtures/comments/get.json
|
572
|
-
- spec/fixtures/comments/post.json
|
573
|
-
- spec/fixtures/comments/new.json
|
574
|
-
- spec/fixtures/contacts/vow_accounts/edit.json
|
575
|
-
- spec/fixtures/contacts/vow_accounts/get.json
|
576
|
-
- spec/fixtures/contacts/vow_accounts/post.json
|
577
|
-
- spec/fixtures/contacts/vow_accounts/new.json
|
578
|
-
- spec/fixtures/contacts/new_empty.json
|
579
|
-
- spec/fixtures/contacts/post.json
|
580
|
-
- spec/fixtures/contacts/my.json
|
581
|
-
- spec/fixtures/contacts/new.json
|
582
|
-
- spec/fixtures/contacts/contacts.json
|
583
|
-
- spec/fixtures/contacts/new_notify.json
|
584
|
-
- spec/fixtures/contacts/tags.json
|
585
|
-
- spec/fixtures/oauth2/access_with_old_refresh.json
|
586
|
-
- spec/fixtures/oauth2/error.json
|
587
|
-
- spec/fixtures/oauth2/authorization_code_body.json
|
588
|
-
- spec/fixtures/oauth2/refresh_body.json
|
589
|
-
- spec/fixtures/oauth2/password_body.json
|
590
|
-
- spec/fixtures/oauth2/access_with_refresh.json
|
591
|
-
- spec/fixtures/oauth2/access.json
|
592
|
-
- spec/fixtures/base.json
|
593
|
-
- spec/fixtures/idx_links/get.json
|
594
|
-
- spec/fixtures/saved_searches/with_inactive_newsfeed.json
|
595
|
-
- spec/fixtures/saved_searches/get_provided.json
|
579
|
+
- spec/fixtures/listing_carts/add_listings.json
|
580
|
+
- spec/fixtures/listing_carts/add_listing_post.json
|
581
|
+
- spec/fixtures/property_types/property_types.json
|
582
|
+
- spec/fixtures/no_results.json
|
596
583
|
- spec/fixtures/saved_searches/get.json
|
584
|
+
- spec/fixtures/saved_searches/update.json
|
597
585
|
- spec/fixtures/saved_searches/post.json
|
598
|
-
- spec/fixtures/saved_searches/without_newsfeed.json
|
599
586
|
- spec/fixtures/saved_searches/with_newsfeed.json
|
600
587
|
- spec/fixtures/saved_searches/new.json
|
601
|
-
- spec/fixtures/saved_searches/
|
602
|
-
- spec/fixtures/
|
603
|
-
- spec/fixtures/
|
604
|
-
- spec/fixtures/
|
605
|
-
- spec/fixtures/
|
606
|
-
- spec/fixtures/
|
607
|
-
- spec/fixtures/
|
608
|
-
- spec/fixtures/
|
609
|
-
- spec/fixtures/
|
610
|
-
- spec/fixtures/
|
611
|
-
- spec/fixtures/
|
612
|
-
- spec/fixtures/
|
613
|
-
- spec/fixtures/
|
614
|
-
- spec/fixtures/
|
615
|
-
- spec/fixtures/
|
616
|
-
- spec/fixtures/
|
617
|
-
- spec/fixtures/
|
618
|
-
- spec/fixtures/listings/
|
619
|
-
- spec/fixtures/listings/photos/rotate.json
|
620
|
-
- spec/fixtures/listings/photos/rollback.json
|
621
|
-
- spec/fixtures/listings/photos/new.json
|
622
|
-
- spec/fixtures/listings/photos/batch_delete.json
|
623
|
-
- spec/fixtures/listings/constraints_with_pagination.json
|
624
|
-
- spec/fixtures/listings/with_rental_calendar.json
|
625
|
-
- spec/fixtures/listings/floplans_index.json
|
626
|
-
- spec/fixtures/listings/shared_listing_get.json
|
627
|
-
- spec/fixtures/listings/with_documents.json
|
628
|
-
- spec/fixtures/listings/tour_of_homes.json
|
588
|
+
- spec/fixtures/saved_searches/with_inactive_newsfeed.json
|
589
|
+
- spec/fixtures/saved_searches/without_newsfeed.json
|
590
|
+
- spec/fixtures/saved_searches/get_provided.json
|
591
|
+
- spec/fixtures/search_templates/quick_searches/get.json
|
592
|
+
- spec/fixtures/newsfeeds/get.json
|
593
|
+
- spec/fixtures/newsfeeds/inactive.json
|
594
|
+
- spec/fixtures/newsfeeds/meta.json
|
595
|
+
- spec/fixtures/sorts/get.json
|
596
|
+
- spec/fixtures/count.json
|
597
|
+
- spec/fixtures/base.json
|
598
|
+
- spec/fixtures/messages/get.json
|
599
|
+
- spec/fixtures/messages/post.json
|
600
|
+
- spec/fixtures/messages/count.json
|
601
|
+
- spec/fixtures/messages/new.json
|
602
|
+
- spec/fixtures/messages/new_with_recipients.json
|
603
|
+
- spec/fixtures/messages/new_empty.json
|
604
|
+
- spec/fixtures/success.json
|
605
|
+
- spec/fixtures/listings/open_houses.json
|
629
606
|
- spec/fixtures/listings/with_supplement.json
|
607
|
+
- spec/fixtures/listings/reorder_photo.json
|
608
|
+
- spec/fixtures/listings/videos_index.json
|
609
|
+
- spec/fixtures/listings/with_photos.json
|
610
|
+
- spec/fixtures/listings/no_subresources.json
|
630
611
|
- spec/fixtures/listings/with_videos.json
|
612
|
+
- spec/fixtures/listings/document_index.json
|
631
613
|
- spec/fixtures/listings/shared_listing_post.json
|
614
|
+
- spec/fixtures/listings/constraints_with_pagination.json
|
615
|
+
- spec/fixtures/listings/floplans_index.json
|
616
|
+
- spec/fixtures/listings/multiple.json
|
617
|
+
- spec/fixtures/listings/with_permissions.json
|
632
618
|
- spec/fixtures/listings/put_reorder_photo.json
|
633
|
-
- spec/fixtures/listings/rental_calendar.json
|
634
619
|
- spec/fixtures/listings/constraints.json
|
635
|
-
- spec/fixtures/listings/
|
636
|
-
- spec/fixtures/listings/with_permissions.json
|
637
|
-
- spec/fixtures/listings/open_houses.json
|
638
|
-
- spec/fixtures/listings/with_photos.json
|
639
|
-
- spec/fixtures/listings/with_vtour.json
|
640
|
-
- spec/fixtures/listings/multiple.json
|
641
|
-
- spec/fixtures/listings/document_index.json
|
642
|
-
- spec/fixtures/listings/reorder_photo.json
|
620
|
+
- spec/fixtures/listings/put.json
|
643
621
|
- spec/fixtures/listings/put_expiration_date.json
|
644
|
-
- spec/fixtures/listings/virtual_tours_index.json
|
645
622
|
- spec/fixtures/listings/tour_of_homes_search.json
|
623
|
+
- spec/fixtures/listings/with_rental_calendar.json
|
624
|
+
- spec/fixtures/listings/photos/rollback.json
|
625
|
+
- spec/fixtures/listings/photos/post.json
|
626
|
+
- spec/fixtures/listings/photos/batch_delete.json
|
627
|
+
- spec/fixtures/listings/photos/rotate.json
|
628
|
+
- spec/fixtures/listings/photos/new.json
|
629
|
+
- spec/fixtures/listings/photos/index.json
|
646
630
|
- spec/fixtures/listings/shared_listing_new.json
|
647
|
-
- spec/fixtures/
|
648
|
-
- spec/fixtures/
|
649
|
-
- spec/fixtures/
|
650
|
-
- spec/fixtures/
|
651
|
-
- spec/fixtures/
|
652
|
-
- spec/fixtures/
|
653
|
-
- spec/fixtures/oauth2_error.json
|
654
|
-
- spec/fixtures/finders.json
|
631
|
+
- spec/fixtures/listings/rental_calendar.json
|
632
|
+
- spec/fixtures/listings/virtual_tours_index.json
|
633
|
+
- spec/fixtures/listings/with_documents.json
|
634
|
+
- spec/fixtures/listings/tour_of_homes.json
|
635
|
+
- spec/fixtures/listings/shared_listing_get.json
|
636
|
+
- spec/fixtures/listings/with_vtour.json
|
655
637
|
- spec/fixtures/portal/post.json
|
656
638
|
- spec/fixtures/portal/my.json
|
657
|
-
- spec/fixtures/portal/
|
639
|
+
- spec/fixtures/portal/disable.json
|
658
640
|
- spec/fixtures/portal/new.json
|
641
|
+
- spec/fixtures/portal/my_non_existant.json
|
659
642
|
- spec/fixtures/portal/enable.json
|
660
|
-
- spec/fixtures/portal/disable.json
|
661
|
-
- spec/fixtures/session.json
|
662
|
-
- spec/fixtures/rules/get.json
|
663
|
-
- spec/fixtures/newsfeeds/get.json
|
664
|
-
- spec/fixtures/newsfeeds/inactive.json
|
665
|
-
- spec/fixtures/newsfeeds/meta.json
|
666
|
-
- spec/fixtures/listing_meta_translations/get.json
|
667
|
-
- spec/fixtures/empty.json
|
668
|
-
- spec/fixtures/sorts/get.json
|
669
|
-
- spec/fixtures/notifications/new_empty.json
|
670
643
|
- spec/fixtures/notifications/notifications.json
|
671
644
|
- spec/fixtures/notifications/post.json
|
672
645
|
- spec/fixtures/notifications/new.json
|
673
|
-
- spec/fixtures/notifications/mark_read.json
|
674
646
|
- spec/fixtures/notifications/unread.json
|
647
|
+
- spec/fixtures/notifications/mark_read.json
|
648
|
+
- spec/fixtures/notifications/new_empty.json
|
649
|
+
- spec/fixtures/rules/get.json
|
650
|
+
- spec/fixtures/empty.json
|
651
|
+
- spec/fixtures/activities/get.json
|
652
|
+
- spec/fixtures/errors/expired.json
|
653
|
+
- spec/fixtures/errors/failure_with_msg.json
|
654
|
+
- spec/fixtures/errors/failure_with_constraint.json
|
655
|
+
- spec/fixtures/errors/failure.json
|
656
|
+
- spec/fixtures/authentication_failure.json
|
657
|
+
- spec/fixtures/standardfields/standardfields.json
|
658
|
+
- spec/fixtures/standardfields/city.json
|
659
|
+
- spec/fixtures/standardfields/stateorprovince.json
|
660
|
+
- spec/fixtures/standardfields/nearby.json
|
661
|
+
- spec/fixtures/listing_meta_translations/get.json
|
662
|
+
- spec/fixtures/oauth2_error.json
|
663
|
+
- spec/fixtures/fields/order_a.json
|
664
|
+
- spec/fixtures/fields/order.json
|
665
|
+
- spec/fixtures/fields/settings.json
|
666
|
+
- spec/fixtures/notes/add.json
|
667
|
+
- spec/fixtures/notes/new.json
|
668
|
+
- spec/fixtures/notes/agent_shared.json
|
669
|
+
- spec/fixtures/notes/agent_shared_empty.json
|
670
|
+
- spec/fixtures/oauth2/access.json
|
671
|
+
- spec/fixtures/oauth2/access_with_old_refresh.json
|
672
|
+
- spec/fixtures/oauth2/password_body.json
|
673
|
+
- spec/fixtures/oauth2/access_with_refresh.json
|
674
|
+
- spec/fixtures/oauth2/error.json
|
675
|
+
- spec/fixtures/oauth2/authorization_code_body.json
|
676
|
+
- spec/fixtures/oauth2/refresh_body.json
|
675
677
|
- spec/fixtures/logo_fbs.png
|
678
|
+
- spec/fixtures/generic_failure.json
|
679
|
+
- spec/fixtures/accounts/my.json
|
680
|
+
- spec/fixtures/accounts/office.json
|
681
|
+
- spec/fixtures/accounts/password_save.json
|
682
|
+
- spec/fixtures/accounts/all.json
|
683
|
+
- spec/fixtures/accounts/my_put.json
|
684
|
+
- spec/fixtures/accounts/my_portal.json
|
685
|
+
- spec/fixtures/accounts/my_save.json
|
686
|
+
- spec/fixtures/contacts/vow_accounts/get.json
|
687
|
+
- spec/fixtures/contacts/vow_accounts/post.json
|
688
|
+
- spec/fixtures/contacts/vow_accounts/edit.json
|
689
|
+
- spec/fixtures/contacts/vow_accounts/new.json
|
690
|
+
- spec/fixtures/contacts/post.json
|
691
|
+
- spec/fixtures/contacts/my.json
|
692
|
+
- spec/fixtures/contacts/new.json
|
693
|
+
- spec/fixtures/contacts/tags.json
|
694
|
+
- spec/fixtures/contacts/new_notify.json
|
695
|
+
- spec/fixtures/contacts/contacts.json
|
696
|
+
- spec/fixtures/contacts/new_empty.json
|
697
|
+
- spec/fixtures/finders.json
|
698
|
+
- spec/fixtures/sharedlinks/success.json
|
676
699
|
- spec/fixtures/generic_delete.json
|
677
|
-
- spec/fixtures/
|
678
|
-
- spec/fixtures/
|
679
|
-
- spec/fixtures/
|
680
|
-
- spec/fixtures/messages/post.json
|
681
|
-
- spec/fixtures/messages/new.json
|
682
|
-
- spec/fixtures/messages/count.json
|
700
|
+
- spec/fixtures/comments/get.json
|
701
|
+
- spec/fixtures/comments/post.json
|
702
|
+
- spec/fixtures/comments/new.json
|
683
703
|
- spec/unit/spark_api_spec.rb
|
684
|
-
- spec/unit/spark_api/
|
685
|
-
- spec/unit/spark_api/request_spec.rb
|
686
|
-
- spec/unit/spark_api/options_hash_spec.rb
|
687
|
-
- spec/unit/spark_api/authentication/base_auth_spec.rb
|
688
|
-
- spec/unit/spark_api/authentication/oauth2_spec.rb
|
689
|
-
- spec/unit/spark_api/authentication/api_auth_spec.rb
|
690
|
-
- spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
|
691
|
-
- spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
|
692
|
-
- spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
|
693
|
-
- spec/unit/spark_api/models/notification_spec.rb
|
704
|
+
- spec/unit/spark_api/configuration/yaml_spec.rb
|
694
705
|
- spec/unit/spark_api/models/floplan_spec.rb
|
695
|
-
- spec/unit/spark_api/models/
|
696
|
-
- spec/unit/spark_api/models/
|
697
|
-
- spec/unit/spark_api/models/document_spec.rb
|
698
|
-
- spec/unit/spark_api/models/newsfeed_spec.rb
|
699
|
-
- spec/unit/spark_api/models/system_info_spec.rb
|
700
|
-
- spec/unit/spark_api/models/tour_of_home_spec.rb
|
701
|
-
- spec/unit/spark_api/models/vow_account_spec.rb
|
702
|
-
- spec/unit/spark_api/models/activity_spec.rb
|
703
|
-
- spec/unit/spark_api/models/listing_meta_translations_spec.rb
|
704
|
-
- spec/unit/spark_api/models/news_feed_meta_spec.rb
|
705
|
-
- spec/unit/spark_api/models/listing_spec.rb
|
706
|
+
- spec/unit/spark_api/models/email_link_spec.rb
|
707
|
+
- spec/unit/spark_api/models/property_types_spec.rb
|
706
708
|
- spec/unit/spark_api/models/sort_spec.rb
|
707
|
-
- spec/unit/spark_api/models/subresource_spec.rb
|
708
709
|
- spec/unit/spark_api/models/connect_prefs_spec.rb
|
709
|
-
- spec/unit/spark_api/models/
|
710
|
-
- spec/unit/spark_api/models/video_spec.rb
|
710
|
+
- spec/unit/spark_api/models/contact_spec.rb
|
711
711
|
- spec/unit/spark_api/models/virtual_tour_spec.rb
|
712
|
-
- spec/unit/spark_api/models/
|
713
|
-
- spec/unit/spark_api/models/
|
714
|
-
- spec/unit/spark_api/models/
|
715
|
-
- spec/unit/spark_api/models/
|
716
|
-
- spec/unit/spark_api/models/
|
717
|
-
- spec/unit/spark_api/models/
|
712
|
+
- spec/unit/spark_api/models/news_feed_meta_spec.rb
|
713
|
+
- spec/unit/spark_api/models/base_spec.rb
|
714
|
+
- spec/unit/spark_api/models/note_spec.rb
|
715
|
+
- spec/unit/spark_api/models/shared_listing_spec.rb
|
716
|
+
- spec/unit/spark_api/models/tour_of_home_spec.rb
|
717
|
+
- spec/unit/spark_api/models/video_spec.rb
|
718
|
+
- spec/unit/spark_api/models/rental_calendar_spec.rb
|
718
719
|
- spec/unit/spark_api/models/photo_spec.rb
|
720
|
+
- spec/unit/spark_api/models/vow_account_spec.rb
|
719
721
|
- spec/unit/spark_api/models/finders_spec.rb
|
720
|
-
- spec/unit/spark_api/models/
|
722
|
+
- spec/unit/spark_api/models/shared_link_spec.rb
|
721
723
|
- spec/unit/spark_api/models/concerns/savable_spec.rb
|
722
724
|
- spec/unit/spark_api/models/concerns/destroyable_spec.rb
|
723
|
-
- spec/unit/spark_api/models/
|
725
|
+
- spec/unit/spark_api/models/listing_meta_translations_spec.rb
|
726
|
+
- spec/unit/spark_api/models/rule_spec.rb
|
724
727
|
- spec/unit/spark_api/models/defaultable_spec.rb
|
725
|
-
- spec/unit/spark_api/models/
|
726
|
-
- spec/unit/spark_api/models/
|
727
|
-
- spec/unit/spark_api/models/
|
728
|
+
- spec/unit/spark_api/models/listing_spec.rb
|
729
|
+
- spec/unit/spark_api/models/dirty_spec.rb
|
730
|
+
- spec/unit/spark_api/models/subresource_spec.rb
|
731
|
+
- spec/unit/spark_api/models/open_house_spec.rb
|
732
|
+
- spec/unit/spark_api/models/portal_spec.rb
|
728
733
|
- spec/unit/spark_api/models/search_template/quick_search_spec.rb
|
729
|
-
- spec/unit/spark_api/models/
|
730
|
-
- spec/unit/spark_api/models/
|
731
|
-
- spec/unit/spark_api/models/
|
734
|
+
- spec/unit/spark_api/models/constraint_spec.rb
|
735
|
+
- spec/unit/spark_api/models/newsfeed_spec.rb
|
736
|
+
- spec/unit/spark_api/models/notification_spec.rb
|
737
|
+
- spec/unit/spark_api/models/standard_fields_spec.rb
|
738
|
+
- spec/unit/spark_api/models/fields_spec.rb
|
739
|
+
- spec/unit/spark_api/models/account_spec.rb
|
732
740
|
- spec/unit/spark_api/models/account_report_spec.rb
|
733
|
-
- spec/unit/spark_api/models/
|
734
|
-
- spec/unit/spark_api/models/
|
741
|
+
- spec/unit/spark_api/models/message_spec.rb
|
742
|
+
- spec/unit/spark_api/models/activity_spec.rb
|
743
|
+
- spec/unit/spark_api/models/system_info_spec.rb
|
744
|
+
- spec/unit/spark_api/models/document_spec.rb
|
745
|
+
- spec/unit/spark_api/models/listing_cart_spec.rb
|
746
|
+
- spec/unit/spark_api/models/saved_search_spec.rb
|
747
|
+
- spec/unit/spark_api/request_spec.rb
|
748
|
+
- spec/unit/spark_api/multi_client_spec.rb
|
749
|
+
- spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
|
750
|
+
- spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
|
751
|
+
- spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
|
752
|
+
- spec/unit/spark_api/authentication/oauth2_spec.rb
|
753
|
+
- spec/unit/spark_api/authentication/base_auth_spec.rb
|
754
|
+
- spec/unit/spark_api/authentication/api_auth_spec.rb
|
755
|
+
- spec/unit/spark_api/primary_array_spec.rb
|
735
756
|
- spec/unit/spark_api/faraday_middleware_spec.rb
|
736
757
|
- spec/unit/spark_api/configuration_spec.rb
|
737
|
-
- spec/unit/spark_api/primary_array_spec.rb
|
738
|
-
- spec/unit/spark_api/configuration/yaml_spec.rb
|
739
|
-
- spec/unit/spark_api/multi_client_spec.rb
|
740
758
|
- spec/unit/spark_api/authentication_spec.rb
|
759
|
+
- spec/unit/spark_api/paginate_spec.rb
|
760
|
+
- spec/unit/spark_api/options_hash_spec.rb
|
741
761
|
- spec/spec_helper.rb
|