ey-core 3.4.4 → 3.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -1
  3. data/CHANGELOG.md +27 -5
  4. data/Gemfile +1 -2
  5. data/README.md +65 -8
  6. data/ey-core.gemspec +6 -5
  7. data/features/docker_registry_credentials.feature +21 -0
  8. data/features/environment_variables.feature +54 -0
  9. data/features/step_definitions/accounts_steps.rb +14 -0
  10. data/features/step_definitions/applications_steps.rb +7 -14
  11. data/features/step_definitions/docker_registry_credentials_steps.rb +3 -0
  12. data/features/step_definitions/environment_variables_steps.rb +51 -0
  13. data/features/step_definitions/environments_steps.rb +15 -0
  14. data/features/support/environment_variable_helpers.rb +20 -0
  15. data/features/support/mock_api.rb +0 -1
  16. data/features/support/resource_helpers.rb +12 -0
  17. data/lib/ey-core/cli/deploy.rb +12 -9
  18. data/lib/ey-core/cli/docker_registry_login.rb +29 -0
  19. data/lib/ey-core/cli/environment_variables.rb +71 -0
  20. data/lib/ey-core/cli/helpers/chef.rb +1 -1
  21. data/lib/ey-core/cli/helpers/core.rb +32 -3
  22. data/lib/ey-core/cli/helpers/server_sieve.rb +7 -0
  23. data/lib/ey-core/cli/main.rb +5 -4
  24. data/lib/ey-core/cli/servers.rb +35 -17
  25. data/lib/ey-core/cli/ssh.rb +6 -0
  26. data/lib/ey-core/client/mock.rb +4 -0
  27. data/lib/ey-core/client.rb +27 -0
  28. data/lib/ey-core/collections/auto_scaling_alarms.rb +8 -0
  29. data/lib/ey-core/collections/auto_scaling_policies.rb +33 -0
  30. data/lib/ey-core/collections/container_clusters.rb +9 -0
  31. data/lib/ey-core/collections/container_service_deployments.rb +17 -0
  32. data/lib/ey-core/collections/environment_variables.rb +8 -0
  33. data/lib/ey-core/models/account.rb +10 -0
  34. data/lib/ey-core/models/address.rb +2 -0
  35. data/lib/ey-core/models/application.rb +1 -0
  36. data/lib/ey-core/models/auto_scaling_alarm.rb +54 -0
  37. data/lib/ey-core/models/auto_scaling_group.rb +26 -0
  38. data/lib/ey-core/models/base_auto_scaling_policy.rb +61 -0
  39. data/lib/ey-core/models/container_service_deployment.rb +17 -0
  40. data/lib/ey-core/models/deployment.rb +1 -0
  41. data/lib/ey-core/models/environment.rb +53 -47
  42. data/lib/ey-core/models/environment_variable.rb +29 -0
  43. data/lib/ey-core/models/request.rb +4 -0
  44. data/lib/ey-core/models/simple_auto_scaling_policy.rb +24 -0
  45. data/lib/ey-core/models/step_auto_scaling_policy.rb +24 -0
  46. data/lib/ey-core/models/target_auto_scaling_policy.rb +24 -0
  47. data/lib/ey-core/requests/create_account.rb +5 -0
  48. data/lib/ey-core/requests/create_address.rb +1 -0
  49. data/lib/ey-core/requests/create_application.rb +8 -7
  50. data/lib/ey-core/requests/create_auto_scaling_alarm.rb +69 -0
  51. data/lib/ey-core/requests/create_auto_scaling_policy.rb +68 -0
  52. data/lib/ey-core/requests/create_environment.rb +2 -1
  53. data/lib/ey-core/requests/create_environment_variable.rb +39 -0
  54. data/lib/ey-core/requests/create_user.rb +8 -6
  55. data/lib/ey-core/requests/deploy_environment_application.rb +1 -0
  56. data/lib/ey-core/requests/destroy_auto_scaling_alarm.rb +49 -0
  57. data/lib/ey-core/requests/destroy_auto_scaling_policy.rb +49 -0
  58. data/lib/ey-core/requests/discover_container_service_deployments.rb +71 -0
  59. data/lib/ey-core/requests/get_applications.rb +1 -1
  60. data/lib/ey-core/requests/get_auto_scaling_alarm.rb +27 -0
  61. data/lib/ey-core/requests/get_auto_scaling_alarms.rb +34 -0
  62. data/lib/ey-core/requests/get_auto_scaling_policies.rb +46 -0
  63. data/lib/ey-core/requests/get_auto_scaling_policy.rb +27 -0
  64. data/lib/ey-core/requests/get_deployments.rb +1 -1
  65. data/lib/ey-core/requests/get_environment_variable.rb +19 -0
  66. data/lib/ey-core/requests/get_environment_variables.rb +29 -0
  67. data/lib/ey-core/requests/get_environments.rb +1 -1
  68. data/lib/ey-core/requests/get_ssl_certificate.rb +1 -1
  69. data/lib/ey-core/requests/retrieve_docker_registry_credentials.rb +24 -0
  70. data/lib/ey-core/requests/update_auto_scaling_alarm.rb +45 -0
  71. data/lib/ey-core/requests/update_auto_scaling_policy.rb +46 -0
  72. data/lib/ey-core/requests/update_environment_variable.rb +25 -0
  73. data/lib/ey-core/test_helpers/auto_scaling_helpers.rb +35 -0
  74. data/lib/ey-core/test_helpers.rb +2 -0
  75. data/lib/ey-core/version.rb +1 -1
  76. data/spec/addresses_spec.rb +2 -1
  77. data/spec/auto_scaling_alarms_spec.rb +40 -0
  78. data/spec/auto_scaling_policies_spec.rb +94 -0
  79. data/spec/docker_registry_credentials_spec.rb +16 -0
  80. data/spec/spec_helper.rb +7 -0
  81. data/spec/support/core.rb +0 -2
  82. metadata +78 -18
data/spec/spec_helper.rb CHANGED
@@ -17,4 +17,11 @@ RSpec.configure do |config|
17
17
  $stdin = STDIN
18
18
  $stderr = STDERR
19
19
  end
20
+
21
+ #
22
+ # This allows to have not_change matcher, i.e.
23
+ #
24
+ # expect { something }.to change { other_thing }
25
+ # .and not_change { completely_other_things }
26
+ RSpec::Matchers.define_negated_matcher :not_change, :change
20
27
  end
data/spec/support/core.rb CHANGED
@@ -1,5 +1,3 @@
1
- Cistern.formatter = Cistern::Formatter::AwesomePrint
2
-
3
1
  if ENV['MOCK_CORE'] == 'true'
4
2
  Ey::Core::Client.mock!
5
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ey-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.4
4
+ version: 3.6.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Engine Yard Engineering
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-11 00:00:00.000000000 Z
11
+ date: 2022-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -25,19 +25,19 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: awesome_print
28
+ name: amazing_print
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ">="
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0'
33
+ version: 1.1.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ">="
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0'
40
+ version: 1.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: belafonte
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -108,34 +108,48 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: hashie
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 4.1.0
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 4.1.0
111
125
  - !ruby/object:Gem::Dependency
112
126
  name: faraday
113
127
  requirement: !ruby/object:Gem::Requirement
114
128
  requirements:
115
129
  - - "~>"
116
130
  - !ruby/object:Gem::Version
117
- version: '0.9'
131
+ version: '1.0'
118
132
  type: :runtime
119
133
  prerelease: false
120
134
  version_requirements: !ruby/object:Gem::Requirement
121
135
  requirements:
122
136
  - - "~>"
123
137
  - !ruby/object:Gem::Version
124
- version: '0.9'
138
+ version: '1.0'
125
139
  - !ruby/object:Gem::Dependency
126
140
  name: faraday_middleware
127
141
  requirement: !ruby/object:Gem::Requirement
128
142
  requirements:
129
143
  - - "~>"
130
144
  - !ruby/object:Gem::Version
131
- version: '0.9'
145
+ version: '1.0'
132
146
  type: :runtime
133
147
  prerelease: false
134
148
  version_requirements: !ruby/object:Gem::Requirement
135
149
  requirements:
136
150
  - - "~>"
137
151
  - !ruby/object:Gem::Version
138
- version: '0.9'
152
+ version: '1.0'
139
153
  - !ruby/object:Gem::Dependency
140
154
  name: rack
141
155
  requirement: !ruby/object:Gem::Requirement
@@ -182,16 +196,16 @@ dependencies:
182
196
  name: json
183
197
  requirement: !ruby/object:Gem::Requirement
184
198
  requirements:
185
- - - "<"
199
+ - - "~>"
186
200
  - !ruby/object:Gem::Version
187
- version: '2.0'
201
+ version: 2.3.0
188
202
  type: :runtime
189
203
  prerelease: false
190
204
  version_requirements: !ruby/object:Gem::Requirement
191
205
  requirements:
192
- - - "<"
206
+ - - "~>"
193
207
  - !ruby/object:Gem::Version
194
- version: '2.0'
208
+ version: 2.3.0
195
209
  - !ruby/object:Gem::Dependency
196
210
  name: mime-types
197
211
  requirement: !ruby/object:Gem::Requirement
@@ -403,6 +417,8 @@ files:
403
417
  - features/accounts.feature
404
418
  - features/applications.feature
405
419
  - features/current_user.feature
420
+ - features/docker_registry_credentials.feature
421
+ - features/environment_variables.feature
406
422
  - features/environments.feature
407
423
  - features/init.feature
408
424
  - features/login.feature
@@ -411,6 +427,8 @@ files:
411
427
  - features/step_definitions/applications_steps.rb
412
428
  - features/step_definitions/current_user_steps.rb
413
429
  - features/step_definitions/deprecated_command_steps.rb
430
+ - features/step_definitions/docker_registry_credentials_steps.rb
431
+ - features/step_definitions/environment_variables_steps.rb
414
432
  - features/step_definitions/environments_steps.rb
415
433
  - features/step_definitions/version_steps.rb
416
434
  - features/support/account_helpers.rb
@@ -423,6 +441,7 @@ files:
423
441
  - features/support/deployment_helpers.rb
424
442
  - features/support/env.rb
425
443
  - features/support/environment_helpers.rb
444
+ - features/support/environment_variable_helpers.rb
426
445
  - features/support/fake_kernel.rb
427
446
  - features/support/io.rb
428
447
  - features/support/mock_api.rb
@@ -439,6 +458,8 @@ files:
439
458
  - lib/ey-core/cli/console.rb
440
459
  - lib/ey-core/cli/current_user.rb
441
460
  - lib/ey-core/cli/deploy.rb
461
+ - lib/ey-core/cli/docker_registry_login.rb
462
+ - lib/ey-core/cli/environment_variables.rb
442
463
  - lib/ey-core/cli/environments.rb
443
464
  - lib/ey-core/cli/errors.rb
444
465
  - lib/ey-core/cli/help.rb
@@ -485,11 +506,15 @@ files:
485
506
  - lib/ey-core/collections/application_archives.rb
486
507
  - lib/ey-core/collections/application_deployments.rb
487
508
  - lib/ey-core/collections/applications.rb
509
+ - lib/ey-core/collections/auto_scaling_alarms.rb
488
510
  - lib/ey-core/collections/auto_scaling_groups.rb
511
+ - lib/ey-core/collections/auto_scaling_policies.rb
489
512
  - lib/ey-core/collections/backup_files.rb
490
513
  - lib/ey-core/collections/blueprints.rb
491
514
  - lib/ey-core/collections/components.rb
492
515
  - lib/ey-core/collections/contacts.rb
516
+ - lib/ey-core/collections/container_clusters.rb
517
+ - lib/ey-core/collections/container_service_deployments.rb
493
518
  - lib/ey-core/collections/costs.rb
494
519
  - lib/ey-core/collections/database_plan_usages.rb
495
520
  - lib/ey-core/collections/database_server_revisions.rb
@@ -499,6 +524,7 @@ files:
499
524
  - lib/ey-core/collections/database_services.rb
500
525
  - lib/ey-core/collections/deployments.rb
501
526
  - lib/ey-core/collections/environment_plan_usages.rb
527
+ - lib/ey-core/collections/environment_variables.rb
502
528
  - lib/ey-core/collections/environments.rb
503
529
  - lib/ey-core/collections/features.rb
504
530
  - lib/ey-core/collections/firewall_rules.rb
@@ -549,12 +575,15 @@ files:
549
575
  - lib/ey-core/models/application.rb
550
576
  - lib/ey-core/models/application_archive.rb
551
577
  - lib/ey-core/models/application_deployment.rb
578
+ - lib/ey-core/models/auto_scaling_alarm.rb
552
579
  - lib/ey-core/models/auto_scaling_group.rb
553
580
  - lib/ey-core/models/backup_file.rb
581
+ - lib/ey-core/models/base_auto_scaling_policy.rb
554
582
  - lib/ey-core/models/billing.rb
555
583
  - lib/ey-core/models/blueprint.rb
556
584
  - lib/ey-core/models/component.rb
557
585
  - lib/ey-core/models/contact.rb
586
+ - lib/ey-core/models/container_service_deployment.rb
558
587
  - lib/ey-core/models/cost.rb
559
588
  - lib/ey-core/models/database_plan_usage.rb
560
589
  - lib/ey-core/models/database_server.rb
@@ -565,6 +594,7 @@ files:
565
594
  - lib/ey-core/models/deployment.rb
566
595
  - lib/ey-core/models/environment.rb
567
596
  - lib/ey-core/models/environment_plan_usage.rb
597
+ - lib/ey-core/models/environment_variable.rb
568
598
  - lib/ey-core/models/feature.rb
569
599
  - lib/ey-core/models/firewall.rb
570
600
  - lib/ey-core/models/firewall_rule.rb
@@ -587,10 +617,13 @@ files:
587
617
  - lib/ey-core/models/server_event.rb
588
618
  - lib/ey-core/models/server_usage.rb
589
619
  - lib/ey-core/models/service.rb
620
+ - lib/ey-core/models/simple_auto_scaling_policy.rb
590
621
  - lib/ey-core/models/ssl_certificate.rb
622
+ - lib/ey-core/models/step_auto_scaling_policy.rb
591
623
  - lib/ey-core/models/storage.rb
592
624
  - lib/ey-core/models/storage_user.rb
593
625
  - lib/ey-core/models/support_trial.rb
626
+ - lib/ey-core/models/target_auto_scaling_policy.rb
594
627
  - lib/ey-core/models/task.rb
595
628
  - lib/ey-core/models/token.rb
596
629
  - lib/ey-core/models/untracked_address.rb
@@ -615,12 +648,15 @@ files:
615
648
  - lib/ey-core/requests/create_alert.rb
616
649
  - lib/ey-core/requests/create_application.rb
617
650
  - lib/ey-core/requests/create_application_archive.rb
651
+ - lib/ey-core/requests/create_auto_scaling_alarm.rb
618
652
  - lib/ey-core/requests/create_auto_scaling_group.rb
653
+ - lib/ey-core/requests/create_auto_scaling_policy.rb
619
654
  - lib/ey-core/requests/create_backup_file.rb
620
655
  - lib/ey-core/requests/create_database_server.rb
621
656
  - lib/ey-core/requests/create_database_service.rb
622
657
  - lib/ey-core/requests/create_database_service_snapshot.rb
623
658
  - lib/ey-core/requests/create_environment.rb
659
+ - lib/ey-core/requests/create_environment_variable.rb
624
660
  - lib/ey-core/requests/create_firewall.rb
625
661
  - lib/ey-core/requests/create_firewall_rule.rb
626
662
  - lib/ey-core/requests/create_keypair.rb
@@ -644,7 +680,9 @@ files:
644
680
  - lib/ey-core/requests/deploy_environment_application.rb
645
681
  - lib/ey-core/requests/deprovision_environment.rb
646
682
  - lib/ey-core/requests/destroy_addon.rb
683
+ - lib/ey-core/requests/destroy_auto_scaling_alarm.rb
647
684
  - lib/ey-core/requests/destroy_auto_scaling_group.rb
685
+ - lib/ey-core/requests/destroy_auto_scaling_policy.rb
648
686
  - lib/ey-core/requests/destroy_blueprint.rb
649
687
  - lib/ey-core/requests/destroy_database_server.rb
650
688
  - lib/ey-core/requests/destroy_database_server_snapshot.rb
@@ -662,6 +700,7 @@ files:
662
700
  - lib/ey-core/requests/destroy_user.rb
663
701
  - lib/ey-core/requests/detach_address.rb
664
702
  - lib/ey-core/requests/disable_feature.rb
703
+ - lib/ey-core/requests/discover_container_service_deployments.rb
665
704
  - lib/ey-core/requests/discover_database_server.rb
666
705
  - lib/ey-core/requests/discover_database_server_snapshots.rb
667
706
  - lib/ey-core/requests/discover_provider_location.rb
@@ -687,8 +726,12 @@ files:
687
726
  - lib/ey-core/requests/get_application_deployment.rb
688
727
  - lib/ey-core/requests/get_application_deployments.rb
689
728
  - lib/ey-core/requests/get_applications.rb
729
+ - lib/ey-core/requests/get_auto_scaling_alarm.rb
730
+ - lib/ey-core/requests/get_auto_scaling_alarms.rb
690
731
  - lib/ey-core/requests/get_auto_scaling_group.rb
691
732
  - lib/ey-core/requests/get_auto_scaling_groups.rb
733
+ - lib/ey-core/requests/get_auto_scaling_policies.rb
734
+ - lib/ey-core/requests/get_auto_scaling_policy.rb
692
735
  - lib/ey-core/requests/get_backup_file.rb
693
736
  - lib/ey-core/requests/get_backup_files.rb
694
737
  - lib/ey-core/requests/get_billing.rb
@@ -715,6 +758,8 @@ files:
715
758
  - lib/ey-core/requests/get_environment_database_services.rb
716
759
  - lib/ey-core/requests/get_environment_logical_databases.rb
717
760
  - lib/ey-core/requests/get_environment_plan_usages.rb
761
+ - lib/ey-core/requests/get_environment_variable.rb
762
+ - lib/ey-core/requests/get_environment_variables.rb
718
763
  - lib/ey-core/requests/get_environments.rb
719
764
  - lib/ey-core/requests/get_feature.rb
720
765
  - lib/ey-core/requests/get_features.rb
@@ -783,6 +828,7 @@ files:
783
828
  - lib/ey-core/requests/reset_password.rb
784
829
  - lib/ey-core/requests/reset_server_state.rb
785
830
  - lib/ey-core/requests/restart_environment_app_servers.rb
831
+ - lib/ey-core/requests/retrieve_docker_registry_credentials.rb
786
832
  - lib/ey-core/requests/run_cluster_application_action.rb
787
833
  - lib/ey-core/requests/run_environment_application_action.rb
788
834
  - lib/ey-core/requests/signup.rb
@@ -794,11 +840,14 @@ files:
794
840
  - lib/ey-core/requests/update_address.rb
795
841
  - lib/ey-core/requests/update_alert.rb
796
842
  - lib/ey-core/requests/update_application_archive.rb
843
+ - lib/ey-core/requests/update_auto_scaling_alarm.rb
797
844
  - lib/ey-core/requests/update_auto_scaling_group.rb
845
+ - lib/ey-core/requests/update_auto_scaling_policy.rb
798
846
  - lib/ey-core/requests/update_billing.rb
799
847
  - lib/ey-core/requests/update_blueprint.rb
800
848
  - lib/ey-core/requests/update_connector.rb
801
849
  - lib/ey-core/requests/update_environment.rb
850
+ - lib/ey-core/requests/update_environment_variable.rb
802
851
  - lib/ey-core/requests/update_membership.rb
803
852
  - lib/ey-core/requests/update_provider_location.rb
804
853
  - lib/ey-core/requests/update_server.rb
@@ -812,6 +861,7 @@ files:
812
861
  - lib/ey-core/test_helpers.rb
813
862
  - lib/ey-core/test_helpers/account_helpers.rb
814
863
  - lib/ey-core/test_helpers/alert_helpers.rb
864
+ - lib/ey-core/test_helpers/auto_scaling_helpers.rb
815
865
  - lib/ey-core/test_helpers/client_helpers.rb
816
866
  - lib/ey-core/test_helpers/cucumber.rb
817
867
  - lib/ey-core/test_helpers/resource_helpers.rb
@@ -827,7 +877,9 @@ files:
827
877
  - spec/alerts_spec.rb
828
878
  - spec/application_archives_spec.rb
829
879
  - spec/applications_spec.rb
880
+ - spec/auto_scaling_alarms_spec.rb
830
881
  - spec/auto_scaling_groups_spec.rb
882
+ - spec/auto_scaling_policies_spec.rb
831
883
  - spec/billing_spec.rb
832
884
  - spec/blueprints_spec.rb
833
885
  - spec/client_spec.rb
@@ -839,6 +891,7 @@ files:
839
891
  - spec/database_servers_spec.rb
840
892
  - spec/database_services_spec.rb
841
893
  - spec/deployments_spec.rb
894
+ - spec/docker_registry_credentials_spec.rb
842
895
  - spec/environment_plan_usage_spec.rb
843
896
  - spec/environments_spec.rb
844
897
  - spec/ey-core/cli/accounts_spec.rb
@@ -894,15 +947,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
894
947
  requirements:
895
948
  - - ">="
896
949
  - !ruby/object:Gem::Version
897
- version: 2.2.2
950
+ version: '2.5'
898
951
  required_rubygems_version: !ruby/object:Gem::Requirement
899
952
  requirements:
900
953
  - - ">="
901
954
  - !ruby/object:Gem::Version
902
955
  version: '0'
903
956
  requirements: []
904
- rubyforge_project:
905
- rubygems_version: 2.5.2.1
957
+ rubygems_version: 3.2.22
906
958
  signing_key:
907
959
  specification_version: 4
908
960
  summary: Client library providing real and mock functionality for accessing Engine
@@ -911,6 +963,8 @@ test_files:
911
963
  - features/accounts.feature
912
964
  - features/applications.feature
913
965
  - features/current_user.feature
966
+ - features/docker_registry_credentials.feature
967
+ - features/environment_variables.feature
914
968
  - features/environments.feature
915
969
  - features/init.feature
916
970
  - features/login.feature
@@ -919,6 +973,8 @@ test_files:
919
973
  - features/step_definitions/applications_steps.rb
920
974
  - features/step_definitions/current_user_steps.rb
921
975
  - features/step_definitions/deprecated_command_steps.rb
976
+ - features/step_definitions/docker_registry_credentials_steps.rb
977
+ - features/step_definitions/environment_variables_steps.rb
922
978
  - features/step_definitions/environments_steps.rb
923
979
  - features/step_definitions/version_steps.rb
924
980
  - features/support/account_helpers.rb
@@ -931,6 +987,7 @@ test_files:
931
987
  - features/support/deployment_helpers.rb
932
988
  - features/support/env.rb
933
989
  - features/support/environment_helpers.rb
990
+ - features/support/environment_variable_helpers.rb
934
991
  - features/support/fake_kernel.rb
935
992
  - features/support/io.rb
936
993
  - features/support/mock_api.rb
@@ -948,7 +1005,9 @@ test_files:
948
1005
  - spec/alerts_spec.rb
949
1006
  - spec/application_archives_spec.rb
950
1007
  - spec/applications_spec.rb
1008
+ - spec/auto_scaling_alarms_spec.rb
951
1009
  - spec/auto_scaling_groups_spec.rb
1010
+ - spec/auto_scaling_policies_spec.rb
952
1011
  - spec/billing_spec.rb
953
1012
  - spec/blueprints_spec.rb
954
1013
  - spec/client_spec.rb
@@ -960,6 +1019,7 @@ test_files:
960
1019
  - spec/database_servers_spec.rb
961
1020
  - spec/database_services_spec.rb
962
1021
  - spec/deployments_spec.rb
1022
+ - spec/docker_registry_credentials_spec.rb
963
1023
  - spec/environment_plan_usage_spec.rb
964
1024
  - spec/environments_spec.rb
965
1025
  - spec/ey-core/cli/accounts_spec.rb