new_cfoundry 4.9.3 → 4.9.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
- SHA1:
3
- metadata.gz: 1c0e14e6bdd7e3d6c1da62176c9d47247948473e
4
- data.tar.gz: e7a0167d50fa5151e304d745f1ab14cb90f11260
2
+ SHA256:
3
+ metadata.gz: 9d185965a9710f73bf68c2e3c914af9ff9c8f8663244b9d041a3d5233b946058
4
+ data.tar.gz: 4203cf58bfd7b6aab65fd645433d61220f751cd253fcb18f01bfad51244da6b7
5
5
  SHA512:
6
- metadata.gz: a12866b27203014effbdf3f321ab4d6e22850d0d4b3318b4183a833bc7219360073e216d1c11b447018e19486004395e98ff9cc11bfd70646d308b085ac40a83
7
- data.tar.gz: 61d81d1ce8ff7a2f80ec5a19201d0727cb6f75c1d54769a9f43f931c6a4b8cdac97670c0983fadbefdb88f2ab3447e60483bbcc72dfe65bf9422ab99d3595c77
6
+ metadata.gz: 3bda9c41aeccb1cbcd00aa6f8bfb5e4074ca0e03d49423d99c59837c30c6f8da73a9ee9832ffb85018afdee779b1c1cf2aeac8bbc984add9e6b48063268d3e17
7
+ data.tar.gz: 346f1fbe7c261fdf7d03dd4c07c0e0b59378abff73f3e746f536aaafab336ae445747602ca5bebd824baa8b773912d0f244774b1a94a44324334791aa8ea8e5c
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.2.8
1
+ 2.5.1
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.9.3
1
+ 4.9.4
data/cfoundry.gemspec CHANGED
@@ -18,24 +18,24 @@ Gem::Specification.new do |s|
18
18
  s.test_files = Dir.glob("spec/**/*")
19
19
  s.require_paths = %w[lib]
20
20
 
21
- s.add_dependency "activemodel", "<5.0.0", ">= 3.2.13"
21
+ s.add_dependency "activemodel", "<6.0.0", ">= 3.2.13"
22
22
  s.add_dependency "cf-uaa-lib", "~> 3.8.0"
23
23
  s.add_dependency "jwt", "~> 1.5"
24
24
  s.add_dependency "multi_json", "~> 1.7"
25
- s.add_dependency "multipart-post", "~> 1.1"
25
+ s.add_dependency "multipart-post", "~> 2.0"
26
26
  s.add_dependency "rubyzip", "~> 0.9"
27
27
 
28
28
  s.add_development_dependency 'bundler', '~> 1.9'
29
29
  s.add_development_dependency "pry"
30
30
  s.add_development_dependency "pry-stack_explorer"
31
- s.add_development_dependency "factory_girl"
31
+ s.add_development_dependency "factory_bot"
32
32
  s.add_development_dependency "gem-release"
33
33
  s.add_development_dependency "json_pure", "~> 1.8"
34
34
  s.add_development_dependency "rake", ">= 0.9", "< 11.0"
35
35
  s.add_development_dependency "rspec", "~> 2.14"
36
36
  s.add_development_dependency "shoulda-matchers", "~> 2.5.0"
37
37
  s.add_development_dependency "timecop", "~> 0.6.1"
38
- s.add_development_dependency "webmock", "~> 1.9"
38
+ s.add_development_dependency "webmock", "~> 2.3"
39
39
  s.add_development_dependency "putsinator"
40
40
  s.add_development_dependency "version"
41
41
  end
@@ -39,7 +39,7 @@ describe CFoundry::RestClient do
39
39
 
40
40
  it 'should always include a content length' do
41
41
  check_request do |req|
42
- expect(req.headers["Content-Length"]).to eql(0)
42
+ expect(req.headers["Content-Length"]).to eql(0.to_s)
43
43
  end
44
44
  end
45
45
 
@@ -49,7 +49,7 @@ describe CFoundry::RestClient do
49
49
 
50
50
  it 'includes a content length matching the payload size' do
51
51
  check_request do |req|
52
- expect(req.headers["Content-Length"]).to eql("some payload".length)
52
+ expect(req.headers["Content-Length"]).to eql("some payload".length.to_s)
53
53
  end
54
54
  end
55
55
  end
@@ -59,7 +59,7 @@ describe CFoundry::RestClient do
59
59
 
60
60
  it 'includes a content length matching the JSON encoded length' do
61
61
  check_request do |req|
62
- expect(req.headers["Content-Length"]).to eql('{"key":"value"}'.length)
62
+ expect(req.headers["Content-Length"]).to eql('{"key":"value"}'.length.to_s)
63
63
  end
64
64
  end
65
65
  end
@@ -1,7 +1,7 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :app_event, :class => CFoundry::V2::AppEvent do
3
3
  sequence(:guid) { |n| "app-event-guid-#{n}" }
4
4
 
5
5
  initialize_with { new(guid, build(:client)) }
6
6
  end
7
- end
7
+ end
@@ -1,4 +1,4 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :app_usage_event, :class => CFoundry::V2::AppUsageEvent do
3
3
  sequence(:guid) { |n| "app-usage-event-guid-#{n}" }
4
4
  created_at '2013-01-01T12:00:00+00:00'
@@ -1,9 +1,9 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :app, :class => CFoundry::V2::App do
3
3
  sequence(:guid) { |n| "app-guid-#{n}" }
4
4
  transient do
5
5
  manifest { {} }
6
- client { FactoryGirl.build(:client) }
6
+ client { FactoryBot.build(:client) }
7
7
  end
8
8
 
9
9
  initialize_with { new(guid, client, manifest) }
@@ -1,7 +1,7 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :client, :class => CFoundry::V2::Client do
3
3
  initialize_with do
4
4
  new("http://api.example.com")
5
5
  end
6
6
  end
7
- end
7
+ end
@@ -1,4 +1,4 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :domain, :class => CFoundry::V2::Domain do
3
3
  sequence(:guid) { |n| "domain-guid-#{n}" }
4
4
  transient do
@@ -1,4 +1,4 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :event, :class => CFoundry::V2::Event do
3
3
  sequence(:guid) { |n| "event-guid-#{n}" }
4
4
  timestamp '2013-01-01T12:00:00+00:00'
@@ -1,10 +1,10 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :organization, :class => CFoundry::V2::Organization do
3
3
  sequence(:guid) { |n| "organization-guid-#{n}" }
4
4
  status "active"
5
5
 
6
6
  transient do
7
- client { FactoryGirl.build(:client) }
7
+ client { FactoryBot.build(:client) }
8
8
  end
9
9
 
10
10
  initialize_with { new(guid, client) }
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :quota_definition, :class => CFoundry::V2::QuotaDefinition do
3
3
  sequence(:name) { |n| "quota-definition-name-#{n}" }
4
4
  sequence(:guid) { |n| "quota-definition-guid-#{n}" }
5
5
 
6
6
  initialize_with { new(guid, build(:client)) }
7
7
  end
8
- end
8
+ end
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :route, :class => CFoundry::V2::Route do
3
3
  sequence(:guid) { |n| "route-guid-#{n}" }
4
4
  transient do
5
- client { FactoryGirl.build(:client) }
5
+ client { FactoryBot.build(:client) }
6
6
  end
7
7
 
8
8
  initialize_with { new(guid, client) }
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :service_instance, :class => CFoundry::V2::ManagedServiceInstance do
3
3
  sequence(:guid) { |n| "service-instance-guid-#{n}" }
4
4
  transient do
5
- client { FactoryGirl.build(:client) }
5
+ client { FactoryBot.build(:client) }
6
6
  end
7
7
 
8
8
  initialize_with { new(guid, client) }
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :service_plan, :class => CFoundry::V2::ServicePlan do
3
3
  sequence(:guid) { |n| "service-plan-guid-#{n}" }
4
4
  transient do
5
- client { FactoryGirl.build(:client) }
5
+ client { FactoryBot.build(:client) }
6
6
  end
7
7
 
8
8
  initialize_with { new(guid, client) }
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :service, :class => CFoundry::V2::Service do
3
3
  sequence(:guid) { |n| "service-guid-#{n}" }
4
4
  transient do
5
- client { FactoryGirl.build(:client) }
5
+ client { FactoryBot.build(:client) }
6
6
  end
7
7
 
8
8
  initialize_with { new(guid, client) }
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :space, :class => CFoundry::V2::Space do
3
3
  sequence(:guid) { |n| "space-guid-#{n}" }
4
4
  transient do
5
- client { FactoryGirl.build(:client) }
5
+ client { FactoryBot.build(:client) }
6
6
  end
7
7
 
8
8
  initialize_with { new(guid, client) }
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :user_provided_service_instance, :class => CFoundry::V2::UserProvidedServiceInstance do
3
3
  sequence(:guid) { |n| "user-provided-service-instance-guid-#{n}" }
4
4
  transient do
5
- client { FactoryGirl.build(:client) }
5
+ client { FactoryBot.build(:client) }
6
6
  end
7
7
 
8
8
  initialize_with { new(guid, client) }
@@ -1,8 +1,8 @@
1
- FactoryGirl.define do
1
+ FactoryBot.define do
2
2
  factory :user, :class => CFoundry::V2::User do
3
3
  sequence(:guid) { |n| "user-guid-#{n}" }
4
4
  transient do
5
- client { FactoryGirl.build(:client) }
5
+ client { FactoryBot.build(:client) }
6
6
  end
7
7
 
8
8
  initialize_with { new(guid, client) }
@@ -0,0 +1 @@
1
+ spec/fixtures/apps/with_external_symlink/../with_dotfiles/.dotfile
@@ -0,0 +1 @@
1
+ spec/fixtures/apps/with_ignored_external_symlink/../with_dotfiles/.dotfile
@@ -3,6 +3,9 @@ require "spec_helper"
3
3
  describe CFoundry::V2::Client do
4
4
  before do
5
5
  WebMock.allow_net_connect!
6
+ stub_request(:any, "#{environment_api}/info").to_return(
7
+ body: { authorization_endpoint: a1_domain }.to_json
8
+ )
6
9
  end
7
10
 
8
11
  let(:environment_api) { ENV["CF_V2_TEST_TARGET"] || "api.#{a1_domain}"}
data/spec/spec_helper.rb CHANGED
@@ -15,7 +15,7 @@ require "shoulda/matchers/integrations/rspec" # requiring all of shoulda matcher
15
15
  require "support/shared_examples/cc_api_stub_request_examples"
16
16
  require "support/shared_examples/client_login_examples"
17
17
  require "support/shared_examples/model_summary_examples"
18
- require "support/factory_girl"
18
+ require "support/factory_bot"
19
19
  require "support/test_model_builder"
20
20
 
21
21
  RSpec.configure do |c|
@@ -0,0 +1,6 @@
1
+ require "factory_bot"
2
+
3
+ RSpec.configure do |config|
4
+ config.include FactoryBot::Syntax::Methods
5
+ FactoryBot.find_definitions
6
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: new_cfoundry
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.9.3
4
+ version: 4.9.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - CI-Platform-Team
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-12-20 00:00:00.000000000 Z
12
+ date: 2018-06-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activemodel
@@ -17,7 +17,7 @@ dependencies:
17
17
  requirements:
18
18
  - - "<"
19
19
  - !ruby/object:Gem::Version
20
- version: 5.0.0
20
+ version: 6.0.0
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
23
  version: 3.2.13
@@ -27,7 +27,7 @@ dependencies:
27
27
  requirements:
28
28
  - - "<"
29
29
  - !ruby/object:Gem::Version
30
- version: 5.0.0
30
+ version: 6.0.0
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: 3.2.13
@@ -79,14 +79,14 @@ dependencies:
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: '1.1'
82
+ version: '2.0'
83
83
  type: :runtime
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.1'
89
+ version: '2.0'
90
90
  - !ruby/object:Gem::Dependency
91
91
  name: rubyzip
92
92
  requirement: !ruby/object:Gem::Requirement
@@ -144,7 +144,7 @@ dependencies:
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  - !ruby/object:Gem::Dependency
147
- name: factory_girl
147
+ name: factory_bot
148
148
  requirement: !ruby/object:Gem::Requirement
149
149
  requirements:
150
150
  - - ">="
@@ -253,14 +253,14 @@ dependencies:
253
253
  requirements:
254
254
  - - "~>"
255
255
  - !ruby/object:Gem::Version
256
- version: '1.9'
256
+ version: '2.3'
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
- version: '1.9'
263
+ version: '2.3'
264
264
  - !ruby/object:Gem::Dependency
265
265
  name: putsinator
266
266
  requirement: !ruby/object:Gem::Requirement
@@ -555,7 +555,7 @@ files:
555
555
  - spec/fixtures/fake_cc_user_with_managers.json
556
556
  - spec/integration/client_spec.rb
557
557
  - spec/spec_helper.rb
558
- - spec/support/factory_girl.rb
558
+ - spec/support/factory_bot.rb
559
559
  - spec/support/shared_examples/cc_api_stub_request_examples.rb
560
560
  - spec/support/shared_examples/client_login_examples.rb
561
561
  - spec/support/shared_examples/model_summary_examples.rb
@@ -583,131 +583,131 @@ required_rubygems_version: !ruby/object:Gem::Requirement
583
583
  version: '0'
584
584
  requirements: []
585
585
  rubyforge_project:
586
- rubygems_version: 2.4.5.3
586
+ rubygems_version: 2.7.6
587
587
  signing_key:
588
588
  specification_version: 4
589
589
  summary: High-level library for working with the Cloud Foundry API. This is fork from
590
590
  https://github.com/cloudfoundry-attic/cfoundry
591
591
  test_files:
592
- - spec/cc_api_stub/app_usage_events_spec.rb
593
- - spec/cc_api_stub/applications_spec.rb
594
- - spec/cc_api_stub/domains_spec.rb
595
- - spec/cc_api_stub/events_spec.rb
596
- - spec/cc_api_stub/frameworks_spec.rb
597
- - spec/cc_api_stub/login_spec.rb
598
- - spec/cc_api_stub/organization_users_spec.rb
599
- - spec/cc_api_stub/organizations_spec.rb
600
- - spec/cc_api_stub/routes_spec.rb
601
- - spec/cc_api_stub/runtimes_spec.rb
602
- - spec/cc_api_stub/service_bindings_spec.rb
603
- - spec/cc_api_stub/service_instances_spec.rb
604
- - spec/cc_api_stub/services_spec.rb
605
- - spec/cc_api_stub/space_users_spec.rb
606
- - spec/cc_api_stub/spaces_spec.rb
607
- - spec/cc_api_stub/users_spec.rb
608
- - spec/cfoundry/auth_token_spec.rb
609
- - spec/cfoundry/baseclient_spec.rb
610
- - spec/cfoundry/client_spec.rb
592
+ - spec/spec_helper.rb
593
+ - spec/cfoundry/validator_spec.rb
594
+ - spec/cfoundry/upload_helpers_spec.rb
611
595
  - spec/cfoundry/errors_spec.rb
612
- - spec/cfoundry/rest_client_spec.rb
613
- - spec/cfoundry/trace_helpers_spec.rb
596
+ - spec/cfoundry/client_spec.rb
614
597
  - spec/cfoundry/uaaclient_spec.rb
615
- - spec/cfoundry/upload_helpers_spec.rb
616
- - spec/cfoundry/v2/app_event_spec.rb
598
+ - spec/cfoundry/v2/domain_spec.rb
599
+ - spec/cfoundry/v2/model_spec.rb
600
+ - spec/cfoundry/v2/organization_spec.rb
601
+ - spec/cfoundry/v2/app_usage_event_spec.rb
617
602
  - spec/cfoundry/v2/app_instance_spec.rb
603
+ - spec/cfoundry/v2/quota_definition_spec.rb
604
+ - spec/cfoundry/v2/service_plan_spec.rb
605
+ - spec/cfoundry/v2/model_magic_spec.rb
606
+ - spec/cfoundry/v2/user_provided_service_instance_spec.rb
618
607
  - spec/cfoundry/v2/app_spec.rb
619
- - spec/cfoundry/v2/app_usage_event_spec.rb
620
608
  - spec/cfoundry/v2/base_spec.rb
609
+ - spec/cfoundry/v2/route_spec.rb
621
610
  - spec/cfoundry/v2/client_spec.rb
622
- - spec/cfoundry/v2/domain_spec.rb
623
- - spec/cfoundry/v2/event_spec.rb
624
- - spec/cfoundry/v2/managed_service_instance_spec.rb
625
- - spec/cfoundry/v2/model_magic/attribute_spec.rb
611
+ - spec/cfoundry/v2/user_spec.rb
626
612
  - spec/cfoundry/v2/model_magic/has_summary_spec.rb
627
613
  - spec/cfoundry/v2/model_magic/to_many_spec.rb
614
+ - spec/cfoundry/v2/model_magic/attribute_spec.rb
628
615
  - spec/cfoundry/v2/model_magic/to_one_spec.rb
629
- - spec/cfoundry/v2/model_magic_spec.rb
630
- - spec/cfoundry/v2/model_spec.rb
631
- - spec/cfoundry/v2/organization_spec.rb
632
- - spec/cfoundry/v2/quota_definition_spec.rb
633
- - spec/cfoundry/v2/route_spec.rb
634
- - spec/cfoundry/v2/service_plan_spec.rb
635
- - spec/cfoundry/v2/service_spec.rb
616
+ - spec/cfoundry/v2/event_spec.rb
617
+ - spec/cfoundry/v2/managed_service_instance_spec.rb
618
+ - spec/cfoundry/v2/app_event_spec.rb
636
619
  - spec/cfoundry/v2/space_spec.rb
637
- - spec/cfoundry/v2/user_provided_service_instance_spec.rb
638
- - spec/cfoundry/v2/user_spec.rb
639
- - spec/cfoundry/validator_spec.rb
640
- - spec/factories/app_events_factory.rb
641
- - spec/factories/app_usage_events_factory.rb
642
- - spec/factories/apps_factory.rb
643
- - spec/factories/clients_factory.rb
644
- - spec/factories/domains_factory.rb
645
- - spec/factories/events_factory.rb
646
- - spec/factories/organizations_factory.rb
647
- - spec/factories/quota_definitions_factory.rb
648
- - spec/factories/routes_factory.rb
649
- - spec/factories/service_instances_factory.rb
650
- - spec/factories/service_plans_factory.rb
651
- - spec/factories/services_factory.rb
652
- - spec/factories/spaces_factory.rb
653
- - spec/factories/user_provided_service_instances_factory.rb
654
- - spec/factories/users_factory.rb
655
- - spec/fixtures/apps/with_cfignore/ambiguous_ignored
656
- - spec/fixtures/apps/with_cfignore/ignored_dir/file_in_ignored_dir.txt
657
- - spec/fixtures/apps/with_cfignore/ignored_file.txt
658
- - spec/fixtures/apps/with_cfignore/non_ignored_dir/file_in_non_ignored_dir.txt
659
- - spec/fixtures/apps/with_cfignore/non_ignored_dir/ignored_file.txt
660
- - spec/fixtures/apps/with_cfignore/non_ignored_dir/toplevel_ignored.txt
661
- - spec/fixtures/apps/with_cfignore/non_ignored_file.txt
662
- - spec/fixtures/apps/with_cfignore/toplevel_ignored.txt
663
- - spec/fixtures/apps/with_dotfiles/xyz
664
- - spec/fixtures/apps/with_external_symlink/foo
665
- - spec/fixtures/apps/with_ignored_external_symlink/foo
666
- - spec/fixtures/apps/with_nested_directories/foo/bar/baz/fizz
667
- - spec/fixtures/apps/with_nested_directories/xyz
668
- - spec/fixtures/empty_file
620
+ - spec/cfoundry/v2/service_spec.rb
621
+ - spec/cfoundry/trace_helpers_spec.rb
622
+ - spec/cfoundry/baseclient_spec.rb
623
+ - spec/cfoundry/rest_client_spec.rb
624
+ - spec/cfoundry/auth_token_spec.rb
625
+ - spec/integration/client_spec.rb
626
+ - spec/fixtures/fake_cc_frameworks.json
669
627
  - spec/fixtures/fake_cc_app_usage_events.json
670
- - spec/fixtures/fake_cc_application.json
671
- - spec/fixtures/fake_cc_application_summary.json
672
- - spec/fixtures/fake_cc_created_application.json
673
- - spec/fixtures/fake_cc_created_domain.json
674
- - spec/fixtures/fake_cc_created_organization.json
675
- - spec/fixtures/fake_cc_created_route.json
676
- - spec/fixtures/fake_cc_created_service_instance.json
628
+ - spec/fixtures/fake_cc_service_bindings.json
629
+ - spec/fixtures/fake_cc_runtimes.json
630
+ - spec/fixtures/fake_cc_space_apps.json
631
+ - spec/fixtures/fake_cc_managed_service_instance.json
632
+ - spec/fixtures/fake_cc_space_summary.json
633
+ - spec/fixtures/fake_cc_user_provided_service_instance.json
634
+ - spec/fixtures/fake_cc_service_instance.json
677
635
  - spec/fixtures/fake_cc_created_space.json
678
- - spec/fixtures/fake_cc_created_user.json
679
- - spec/fixtures/fake_cc_domain.json
680
- - spec/fixtures/fake_cc_domain_spaces.json
681
636
  - spec/fixtures/fake_cc_empty_search.json
682
- - spec/fixtures/fake_cc_events.json
683
- - spec/fixtures/fake_cc_frameworks.json
684
- - spec/fixtures/fake_cc_managed_service_instance.json
685
- - spec/fixtures/fake_cc_organization.json
686
- - spec/fixtures/fake_cc_organization_domains.json
687
- - spec/fixtures/fake_cc_organization_search.json
637
+ - spec/fixtures/fake_cc_created_organization.json
688
638
  - spec/fixtures/fake_cc_organization_spaces.json
689
- - spec/fixtures/fake_cc_organization_summary.json
639
+ - spec/fixtures/fake_cc_stats.json
640
+ - spec/fixtures/fake_cc_user.json
690
641
  - spec/fixtures/fake_cc_organization_users.json
642
+ - spec/fixtures/fake_cc_spaces.json
643
+ - spec/fixtures/fake_cc_domain.json
644
+ - spec/fixtures/fake_cc_events.json
645
+ - spec/fixtures/fake_cc_created_service_instance.json
646
+ - spec/fixtures/fake_cc_application.json
647
+ - spec/fixtures/empty_file
648
+ - spec/fixtures/fake_cc_created_user.json
649
+ - spec/fixtures/fake_cc_user_organizations.json
650
+ - spec/fixtures/fake_cc_organization_summary.json
651
+ - spec/fixtures/fake_cc_organization_domains.json
691
652
  - spec/fixtures/fake_cc_route.json
692
- - spec/fixtures/fake_cc_runtimes.json
653
+ - spec/fixtures/fake_cc_organization.json
654
+ - spec/fixtures/fake_cc_created_route.json
693
655
  - spec/fixtures/fake_cc_service_binding.json
694
- - spec/fixtures/fake_cc_service_bindings.json
695
- - spec/fixtures/fake_cc_service_instance.json
696
656
  - spec/fixtures/fake_cc_service_instances.json
697
657
  - spec/fixtures/fake_cc_services.json
698
- - spec/fixtures/fake_cc_space.json
699
- - spec/fixtures/fake_cc_space_apps.json
700
- - spec/fixtures/fake_cc_space_summary.json
701
- - spec/fixtures/fake_cc_spaces.json
702
- - spec/fixtures/fake_cc_stats.json
703
- - spec/fixtures/fake_cc_user.json
704
- - spec/fixtures/fake_cc_user_organizations.json
705
- - spec/fixtures/fake_cc_user_provided_service_instance.json
658
+ - spec/fixtures/fake_cc_created_domain.json
659
+ - spec/fixtures/fake_cc_domain_spaces.json
706
660
  - spec/fixtures/fake_cc_user_with_managers.json
707
- - spec/integration/client_spec.rb
708
- - spec/spec_helper.rb
709
- - spec/support/factory_girl.rb
661
+ - spec/fixtures/fake_cc_organization_search.json
662
+ - spec/fixtures/fake_cc_created_application.json
663
+ - spec/fixtures/fake_cc_space.json
664
+ - spec/fixtures/fake_cc_application_summary.json
665
+ - spec/fixtures/apps/with_dotfiles/xyz
666
+ - spec/fixtures/apps/with_cfignore/non_ignored_file.txt
667
+ - spec/fixtures/apps/with_cfignore/ignored_dir/file_in_ignored_dir.txt
668
+ - spec/fixtures/apps/with_cfignore/ignored_file.txt
669
+ - spec/fixtures/apps/with_cfignore/non_ignored_dir/file_in_non_ignored_dir.txt
670
+ - spec/fixtures/apps/with_cfignore/non_ignored_dir/ignored_file.txt
671
+ - spec/fixtures/apps/with_cfignore/non_ignored_dir/toplevel_ignored.txt
672
+ - spec/fixtures/apps/with_cfignore/toplevel_ignored.txt
673
+ - spec/fixtures/apps/with_cfignore/ambiguous_ignored
674
+ - spec/fixtures/apps/with_external_symlink/foo
675
+ - spec/fixtures/apps/with_nested_directories/xyz
676
+ - spec/fixtures/apps/with_nested_directories/foo/bar/baz/fizz
677
+ - spec/fixtures/apps/with_ignored_external_symlink/foo
678
+ - spec/factories/organizations_factory.rb
679
+ - spec/factories/user_provided_service_instances_factory.rb
680
+ - spec/factories/app_events_factory.rb
681
+ - spec/factories/domains_factory.rb
682
+ - spec/factories/routes_factory.rb
683
+ - spec/factories/service_instances_factory.rb
684
+ - spec/factories/app_usage_events_factory.rb
685
+ - spec/factories/service_plans_factory.rb
686
+ - spec/factories/users_factory.rb
687
+ - spec/factories/apps_factory.rb
688
+ - spec/factories/services_factory.rb
689
+ - spec/factories/clients_factory.rb
690
+ - spec/factories/events_factory.rb
691
+ - spec/factories/quota_definitions_factory.rb
692
+ - spec/factories/spaces_factory.rb
693
+ - spec/cc_api_stub/frameworks_spec.rb
694
+ - spec/cc_api_stub/runtimes_spec.rb
695
+ - spec/cc_api_stub/domains_spec.rb
696
+ - spec/cc_api_stub/applications_spec.rb
697
+ - spec/cc_api_stub/spaces_spec.rb
698
+ - spec/cc_api_stub/events_spec.rb
699
+ - spec/cc_api_stub/routes_spec.rb
700
+ - spec/cc_api_stub/service_bindings_spec.rb
701
+ - spec/cc_api_stub/services_spec.rb
702
+ - spec/cc_api_stub/users_spec.rb
703
+ - spec/cc_api_stub/service_instances_spec.rb
704
+ - spec/cc_api_stub/app_usage_events_spec.rb
705
+ - spec/cc_api_stub/space_users_spec.rb
706
+ - spec/cc_api_stub/login_spec.rb
707
+ - spec/cc_api_stub/organization_users_spec.rb
708
+ - spec/cc_api_stub/organizations_spec.rb
709
+ - spec/support/test_model_builder.rb
710
+ - spec/support/shared_examples/model_summary_examples.rb
710
711
  - spec/support/shared_examples/cc_api_stub_request_examples.rb
711
712
  - spec/support/shared_examples/client_login_examples.rb
712
- - spec/support/shared_examples/model_summary_examples.rb
713
- - spec/support/test_model_builder.rb
713
+ - spec/support/factory_bot.rb
@@ -1 +0,0 @@
1
- foo
@@ -1,6 +0,0 @@
1
- require "factory_girl"
2
-
3
- RSpec.configure do |config|
4
- config.include FactoryGirl::Syntax::Methods
5
- FactoryGirl.find_definitions
6
- end