spark_api 1.5.7 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d4131f03016f01954473ff13da4f6eaa5b3e449467014e1f0724499749bf017
4
- data.tar.gz: 1512fd78baf9b9fa6b62d7be62c9d54b7b4c16fabdec4f114b8c25c785970e46
3
+ metadata.gz: bbd257984db9c6b0321b546eaf34794a8ddd42a0cedb46c284d48305ee1cf5aa
4
+ data.tar.gz: 3f2c191759d9ac5df0290d1ed2486cd55be3e11dc94b01ab4d779314aa42219e
5
5
  SHA512:
6
- metadata.gz: 16535b943347c4c5118ed263e6e8d18dc46a27a9e79aa15e4cd2c02ccdeec712264132484809aa615949419d3260144763de353caec929b6d26ed7e5d4941803
7
- data.tar.gz: 79b6a7b6fb8984045b64ead26347673591c0a6a7075c33dd310ba246047dc7d9c36146d2cef2cff699ab18ef1be0a6e21f8ba1f173316f49f3c87e69c9f712e9
6
+ metadata.gz: e3aaba4e37303375cd7ffc8149b39d2ed9f3cefb36c987f0c7ed2632a9f4881e1040a41fcc1fd7b3ea8e26bc2d05631ccd92d52f163326f1ac398470749e7719
7
+ data.tar.gz: a0488169eb021611cb52fc6c75a56d256fcf32963a3923d6bd4ef1b9b7ab4ce25faa7f75e008b3f974bc8c8a6f18868d7f7819a1e6a236bdb4997c8d30c2b97d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.5.7
1
+ 1.6.0
@@ -82,8 +82,8 @@ module SparkApi
82
82
 
83
83
  def load_file
84
84
  yaml = {}
85
- begin
86
- yaml = YAML.load(File.open(filename))
85
+ begin
86
+ yaml = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(File.open(filename)) : YAML.load(File.open(filename))
87
87
  yaml = {} if yaml == false
88
88
  rescue => e
89
89
  puts "no file: #{e.message}"
@@ -16,7 +16,9 @@ module SparkApi
16
16
  def load_file(file)
17
17
  @file = file
18
18
  @name = File.basename(file, ".yml")
19
- config = YAML.load(ERB.new(File.read(file)).result)[api_env]
19
+
20
+ erb_file = ERB.new(File.read(file)).result
21
+ config = (YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(erb_file) : YAML.load(erb_file))[api_env]
20
22
  config["oauth2"] == true ? load_oauth2(config) : load_api_auth(config)
21
23
  rescue => e
22
24
  SparkApi.logger().error("Unable to load config file #{file}[#{api_env}]")
data/script/bootstrap CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  ruby -v
4
4
  echo "==> Installing gems..."
5
- bundle config set path 'vendor/bundle'
6
- bundle check 2>&1 > /dev/null || {
7
- bundle install
5
+ bundle check --path vendor/bundle 2>&1 > /dev/null || {
6
+ bundle install --quiet --path vendor/bundle
8
7
  }
data/spec/spec_helper.rb CHANGED
@@ -2,10 +2,12 @@ if ENV['COVERAGE'] == "on"
2
2
  require 'simplecov'
3
3
  require 'simplecov-rcov'
4
4
  SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
5
- SimpleCov.start do
6
- add_filter '/vendor'
7
- add_filter '/spec'
8
- add_filter '/test'
5
+ unless SimpleCov.running # Hack to prevent starting SimpleCov multiple times see: https://github.com/simplecov-ruby/simplecov/issues/1003
6
+ SimpleCov.start do
7
+ add_filter '/vendor'
8
+ add_filter '/spec'
9
+ add_filter '/test'
10
+ end
9
11
  end
10
12
  end
11
13
 
@@ -21,13 +23,6 @@ require path + '/spark_api'
21
23
 
22
24
  require 'spark_api'
23
25
 
24
- if ENV['COVERAGE'] == "on"
25
- require 'simplecov'
26
- require 'simplecov-rcov'
27
- SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
28
- SimpleCov.start { add_filter %w(/vendor /spec /test) }
29
- end
30
-
31
26
  FileUtils.mkdir 'log' unless File.exists? 'log'
32
27
 
33
28
  module SparkApi
@@ -51,7 +46,7 @@ end
51
46
 
52
47
  # Requires supporting ruby files with custom matchers and macros, etc,
53
48
  # # in spec/support/ and its subdirectories.
54
- Dir[File.expand_path(File.join(File.dirname(__FILE__),'support','**','*.rb'))].each {|f| require f}
49
+ Dir[File.expand_path(File.join(File.dirname(__FILE__), 'support', '**', '*.rb'))].each { |f| require f }
55
50
 
56
51
  RSpec.configure do |config|
57
52
 
@@ -66,6 +61,6 @@ RSpec.configure do |config|
66
61
  config.color = true
67
62
  end
68
63
 
69
- def jruby?
64
+ def jruby?
70
65
  RUBY_PLATFORM == "java"
71
66
  end
@@ -44,9 +44,8 @@ describe Defaultable do
44
44
  end
45
45
 
46
46
  it "passes options to 'default'" do
47
- args = { foo: true }
48
- expect(TestClass).to receive(:default).with(args)
49
- TestClass.find(TestClass::DEFAULT_ID, args)
47
+ expect(TestClass).to receive(:default).with(foo: true)
48
+ TestClass.find(TestClass::DEFAULT_ID, foo: true)
50
49
  end
51
50
 
52
51
  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.7
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Hornseth
@@ -9,22 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-10-11 00:00:00.000000000 Z
12
+ date: 2022-01-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'
28
14
  - !ruby/object:Gem::Dependency
29
15
  name: faraday
30
16
  requirement: !ruby/object:Gem::Requirement
@@ -559,203 +545,203 @@ signing_key:
559
545
  specification_version: 4
560
546
  summary: A library for interacting with the Spark web services.
561
547
  test_files:
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
548
+ - spec/fixtures/fields/order_a.json
549
+ - spec/fixtures/fields/settings.json
550
+ - spec/fixtures/fields/order.json
551
+ - spec/fixtures/errors/failure_with_msg.json
552
+ - spec/fixtures/errors/failure.json
553
+ - spec/fixtures/errors/expired.json
554
+ - spec/fixtures/errors/failure_with_constraint.json
555
+ - spec/fixtures/property_types/property_types.json
556
+ - spec/fixtures/listing_carts/put.json
566
557
  - spec/fixtures/listing_carts/post.json
567
- - spec/fixtures/listing_carts/put_ids.json
568
- - spec/fixtures/listing_carts/new_portal_cart.json
569
- - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
570
- - spec/fixtures/listing_carts/listing_cart.json
571
558
  - spec/fixtures/listing_carts/put_name.json
572
- - spec/fixtures/listing_carts/new.json
573
559
  - spec/fixtures/listing_carts/add_portal_cart_listings.json
560
+ - spec/fixtures/listing_carts/listing_cart.json
561
+ - spec/fixtures/listing_carts/new_portal_cart.json
562
+ - spec/fixtures/listing_carts/put_ids.json
563
+ - spec/fixtures/listing_carts/new.json
564
+ - spec/fixtures/listing_carts/remove_listing.json
565
+ - spec/fixtures/listing_carts/add_listing_post.json
566
+ - spec/fixtures/listing_carts/add_listing.json
567
+ - spec/fixtures/listing_carts/add_portal_cart_listings_post.json
574
568
  - spec/fixtures/listing_carts/empty.json
569
+ - spec/fixtures/listing_carts/add_listings.json
575
570
  - spec/fixtures/listing_carts/post_portal_cart.json
576
- - spec/fixtures/listing_carts/add_listing.json
577
- - spec/fixtures/listing_carts/put.json
571
+ - spec/fixtures/listing_carts/listing_portal_cart.json
578
572
  - spec/fixtures/listing_carts/add_listings_post.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
573
+ - spec/fixtures/success.json
574
+ - spec/fixtures/activities/get.json
575
+ - spec/fixtures/generic_failure.json
576
+ - spec/fixtures/search_templates/quick_searches/get.json
577
+ - spec/fixtures/comments/get.json
578
+ - spec/fixtures/comments/post.json
579
+ - spec/fixtures/comments/new.json
580
+ - spec/fixtures/contacts/vow_accounts/edit.json
581
+ - spec/fixtures/contacts/vow_accounts/get.json
582
+ - spec/fixtures/contacts/vow_accounts/post.json
583
+ - spec/fixtures/contacts/vow_accounts/new.json
584
+ - spec/fixtures/contacts/new_empty.json
585
+ - spec/fixtures/contacts/post.json
586
+ - spec/fixtures/contacts/my.json
587
+ - spec/fixtures/contacts/new.json
588
+ - spec/fixtures/contacts/contacts.json
589
+ - spec/fixtures/contacts/new_notify.json
590
+ - spec/fixtures/contacts/tags.json
591
+ - spec/fixtures/oauth2/access_with_old_refresh.json
592
+ - spec/fixtures/oauth2/error.json
593
+ - spec/fixtures/oauth2/authorization_code_body.json
594
+ - spec/fixtures/oauth2/refresh_body.json
595
+ - spec/fixtures/oauth2/password_body.json
596
+ - spec/fixtures/oauth2/access_with_refresh.json
597
+ - spec/fixtures/oauth2/access.json
598
+ - spec/fixtures/base.json
599
+ - spec/fixtures/idx_links/get.json
600
+ - spec/fixtures/saved_searches/with_inactive_newsfeed.json
601
+ - spec/fixtures/saved_searches/get_provided.json
583
602
  - spec/fixtures/saved_searches/get.json
584
- - spec/fixtures/saved_searches/update.json
585
603
  - spec/fixtures/saved_searches/post.json
604
+ - spec/fixtures/saved_searches/without_newsfeed.json
586
605
  - spec/fixtures/saved_searches/with_newsfeed.json
587
606
  - spec/fixtures/saved_searches/new.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
606
- - spec/fixtures/listings/with_supplement.json
607
- - spec/fixtures/listings/reorder_photo.json
607
+ - spec/fixtures/saved_searches/update.json
608
+ - spec/fixtures/no_results.json
609
+ - spec/fixtures/notes/agent_shared_empty.json
610
+ - spec/fixtures/notes/new.json
611
+ - spec/fixtures/notes/add.json
612
+ - spec/fixtures/notes/agent_shared.json
613
+ - spec/fixtures/accounts/my_put.json
614
+ - spec/fixtures/accounts/my_portal.json
615
+ - spec/fixtures/accounts/my.json
616
+ - spec/fixtures/accounts/office.json
617
+ - spec/fixtures/accounts/password_save.json
618
+ - spec/fixtures/accounts/my_save.json
619
+ - spec/fixtures/accounts/all.json
620
+ - spec/fixtures/sharedlinks/success.json
621
+ - spec/fixtures/listings/put.json
608
622
  - spec/fixtures/listings/videos_index.json
609
- - spec/fixtures/listings/with_photos.json
610
- - spec/fixtures/listings/no_subresources.json
611
- - spec/fixtures/listings/with_videos.json
612
- - spec/fixtures/listings/document_index.json
613
- - spec/fixtures/listings/shared_listing_post.json
623
+ - spec/fixtures/listings/photos/index.json
624
+ - spec/fixtures/listings/photos/post.json
625
+ - spec/fixtures/listings/photos/rotate.json
626
+ - spec/fixtures/listings/photos/rollback.json
627
+ - spec/fixtures/listings/photos/new.json
628
+ - spec/fixtures/listings/photos/batch_delete.json
614
629
  - spec/fixtures/listings/constraints_with_pagination.json
630
+ - spec/fixtures/listings/with_rental_calendar.json
615
631
  - spec/fixtures/listings/floplans_index.json
616
- - spec/fixtures/listings/multiple.json
617
- - spec/fixtures/listings/with_permissions.json
632
+ - spec/fixtures/listings/shared_listing_get.json
633
+ - spec/fixtures/listings/with_documents.json
634
+ - spec/fixtures/listings/tour_of_homes.json
635
+ - spec/fixtures/listings/with_supplement.json
636
+ - spec/fixtures/listings/with_videos.json
637
+ - spec/fixtures/listings/shared_listing_post.json
618
638
  - spec/fixtures/listings/put_reorder_photo.json
639
+ - spec/fixtures/listings/rental_calendar.json
619
640
  - spec/fixtures/listings/constraints.json
620
- - spec/fixtures/listings/put.json
641
+ - spec/fixtures/listings/no_subresources.json
642
+ - spec/fixtures/listings/with_permissions.json
643
+ - spec/fixtures/listings/open_houses.json
644
+ - spec/fixtures/listings/with_photos.json
645
+ - spec/fixtures/listings/with_vtour.json
646
+ - spec/fixtures/listings/multiple.json
647
+ - spec/fixtures/listings/document_index.json
648
+ - spec/fixtures/listings/reorder_photo.json
621
649
  - spec/fixtures/listings/put_expiration_date.json
650
+ - spec/fixtures/listings/virtual_tours_index.json
622
651
  - 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
630
652
  - spec/fixtures/listings/shared_listing_new.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
653
+ - spec/fixtures/authentication_failure.json
654
+ - spec/fixtures/standardfields/city.json
655
+ - spec/fixtures/standardfields/nearby.json
656
+ - spec/fixtures/standardfields/standardfields.json
657
+ - spec/fixtures/standardfields/stateorprovince.json
658
+ - spec/fixtures/count.json
659
+ - spec/fixtures/oauth2_error.json
660
+ - spec/fixtures/finders.json
637
661
  - spec/fixtures/portal/post.json
638
662
  - spec/fixtures/portal/my.json
639
- - spec/fixtures/portal/disable.json
640
- - spec/fixtures/portal/new.json
641
663
  - spec/fixtures/portal/my_non_existant.json
664
+ - spec/fixtures/portal/new.json
642
665
  - spec/fixtures/portal/enable.json
666
+ - spec/fixtures/portal/disable.json
667
+ - spec/fixtures/session.json
668
+ - spec/fixtures/rules/get.json
669
+ - spec/fixtures/newsfeeds/get.json
670
+ - spec/fixtures/newsfeeds/inactive.json
671
+ - spec/fixtures/newsfeeds/meta.json
672
+ - spec/fixtures/listing_meta_translations/get.json
673
+ - spec/fixtures/empty.json
674
+ - spec/fixtures/sorts/get.json
675
+ - spec/fixtures/notifications/new_empty.json
643
676
  - spec/fixtures/notifications/notifications.json
644
677
  - spec/fixtures/notifications/post.json
645
678
  - spec/fixtures/notifications/new.json
646
- - spec/fixtures/notifications/unread.json
647
679
  - 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
680
+ - spec/fixtures/notifications/unread.json
677
681
  - 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
699
682
  - spec/fixtures/generic_delete.json
700
- - spec/fixtures/comments/get.json
701
- - spec/fixtures/comments/post.json
702
- - spec/fixtures/comments/new.json
683
+ - spec/fixtures/messages/new_empty.json
684
+ - spec/fixtures/messages/get.json
685
+ - spec/fixtures/messages/new_with_recipients.json
686
+ - spec/fixtures/messages/post.json
687
+ - spec/fixtures/messages/new.json
688
+ - spec/fixtures/messages/count.json
703
689
  - spec/unit/spark_api_spec.rb
704
- - spec/unit/spark_api/configuration/yaml_spec.rb
690
+ - spec/unit/spark_api/paginate_spec.rb
691
+ - spec/unit/spark_api/request_spec.rb
692
+ - spec/unit/spark_api/options_hash_spec.rb
693
+ - spec/unit/spark_api/authentication/base_auth_spec.rb
694
+ - spec/unit/spark_api/authentication/oauth2_spec.rb
695
+ - spec/unit/spark_api/authentication/api_auth_spec.rb
696
+ - spec/unit/spark_api/authentication/oauth2_impl/single_session_provider_spec.rb
697
+ - spec/unit/spark_api/authentication/oauth2_impl/grant_type_base_spec.rb
698
+ - spec/unit/spark_api/authentication/oauth2_impl/faraday_middleware_spec.rb
699
+ - spec/unit/spark_api/models/notification_spec.rb
705
700
  - spec/unit/spark_api/models/floplan_spec.rb
706
- - spec/unit/spark_api/models/email_link_spec.rb
707
- - spec/unit/spark_api/models/property_types_spec.rb
701
+ - spec/unit/spark_api/models/fields_spec.rb
702
+ - spec/unit/spark_api/models/open_house_spec.rb
703
+ - spec/unit/spark_api/models/document_spec.rb
704
+ - spec/unit/spark_api/models/newsfeed_spec.rb
705
+ - spec/unit/spark_api/models/system_info_spec.rb
706
+ - spec/unit/spark_api/models/tour_of_home_spec.rb
707
+ - spec/unit/spark_api/models/vow_account_spec.rb
708
+ - spec/unit/spark_api/models/activity_spec.rb
709
+ - spec/unit/spark_api/models/listing_meta_translations_spec.rb
710
+ - spec/unit/spark_api/models/news_feed_meta_spec.rb
711
+ - spec/unit/spark_api/models/listing_spec.rb
708
712
  - spec/unit/spark_api/models/sort_spec.rb
713
+ - spec/unit/spark_api/models/subresource_spec.rb
709
714
  - spec/unit/spark_api/models/connect_prefs_spec.rb
710
- - spec/unit/spark_api/models/contact_spec.rb
711
- - spec/unit/spark_api/models/virtual_tour_spec.rb
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
715
+ - spec/unit/spark_api/models/rule_spec.rb
717
716
  - spec/unit/spark_api/models/video_spec.rb
718
- - spec/unit/spark_api/models/rental_calendar_spec.rb
717
+ - spec/unit/spark_api/models/virtual_tour_spec.rb
718
+ - spec/unit/spark_api/models/listing_cart_spec.rb
719
+ - spec/unit/spark_api/models/message_spec.rb
720
+ - spec/unit/spark_api/models/email_link_spec.rb
721
+ - spec/unit/spark_api/models/standard_fields_spec.rb
722
+ - spec/unit/spark_api/models/dirty_spec.rb
723
+ - spec/unit/spark_api/models/account_spec.rb
719
724
  - spec/unit/spark_api/models/photo_spec.rb
720
- - spec/unit/spark_api/models/vow_account_spec.rb
721
725
  - spec/unit/spark_api/models/finders_spec.rb
722
- - spec/unit/spark_api/models/shared_link_spec.rb
726
+ - spec/unit/spark_api/models/note_spec.rb
723
727
  - spec/unit/spark_api/models/concerns/savable_spec.rb
724
728
  - spec/unit/spark_api/models/concerns/destroyable_spec.rb
725
- - spec/unit/spark_api/models/listing_meta_translations_spec.rb
726
- - spec/unit/spark_api/models/rule_spec.rb
727
- - spec/unit/spark_api/models/defaultable_spec.rb
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
729
  - spec/unit/spark_api/models/portal_spec.rb
733
- - spec/unit/spark_api/models/search_template/quick_search_spec.rb
730
+ - spec/unit/spark_api/models/defaultable_spec.rb
734
731
  - 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
740
- - spec/unit/spark_api/models/account_report_spec.rb
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
732
+ - spec/unit/spark_api/models/shared_listing_spec.rb
733
+ - spec/unit/spark_api/models/property_types_spec.rb
734
+ - spec/unit/spark_api/models/search_template/quick_search_spec.rb
735
+ - spec/unit/spark_api/models/contact_spec.rb
736
+ - spec/unit/spark_api/models/rental_calendar_spec.rb
746
737
  - 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
738
+ - spec/unit/spark_api/models/account_report_spec.rb
739
+ - spec/unit/spark_api/models/base_spec.rb
740
+ - spec/unit/spark_api/models/shared_link_spec.rb
756
741
  - spec/unit/spark_api/faraday_middleware_spec.rb
757
742
  - spec/unit/spark_api/configuration_spec.rb
743
+ - spec/unit/spark_api/primary_array_spec.rb
744
+ - spec/unit/spark_api/configuration/yaml_spec.rb
745
+ - spec/unit/spark_api/multi_client_spec.rb
758
746
  - spec/unit/spark_api/authentication_spec.rb
759
- - spec/unit/spark_api/paginate_spec.rb
760
- - spec/unit/spark_api/options_hash_spec.rb
761
747
  - spec/spec_helper.rb