ey-core 3.4.2 → 3.6.3

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.
Files changed (95) hide show
  1. checksums.yaml +5 -5
  2. data/.ruby-version +1 -1
  3. data/.travis.yml +1 -0
  4. data/CHANGELOG.md +27 -5
  5. data/Gemfile +1 -2
  6. data/README.md +65 -8
  7. data/ey-core.gemspec +6 -5
  8. data/features/docker_registry_credentials.feature +21 -0
  9. data/features/environment_variables.feature +54 -0
  10. data/features/step_definitions/accounts_steps.rb +14 -0
  11. data/features/step_definitions/applications_steps.rb +7 -14
  12. data/features/step_definitions/docker_registry_credentials_steps.rb +3 -0
  13. data/features/step_definitions/environment_variables_steps.rb +51 -0
  14. data/features/step_definitions/environments_steps.rb +15 -0
  15. data/features/support/environment_variable_helpers.rb +20 -0
  16. data/features/support/mock_api.rb +0 -1
  17. data/features/support/resource_helpers.rb +12 -0
  18. data/lib/ey-core/cli/deploy.rb +14 -11
  19. data/lib/ey-core/cli/docker_registry_login.rb +29 -0
  20. data/lib/ey-core/cli/environment_variables.rb +71 -0
  21. data/lib/ey-core/cli/helpers/chef.rb +1 -1
  22. data/lib/ey-core/cli/helpers/core.rb +32 -3
  23. data/lib/ey-core/cli/helpers/server_sieve.rb +7 -0
  24. data/lib/ey-core/cli/main.rb +5 -4
  25. data/lib/ey-core/cli/servers.rb +35 -17
  26. data/lib/ey-core/cli/ssh.rb +7 -1
  27. data/lib/ey-core/client/mock.rb +5 -0
  28. data/lib/ey-core/client.rb +35 -0
  29. data/lib/ey-core/collections/auto_scaling_alarms.rb +8 -0
  30. data/lib/ey-core/collections/auto_scaling_groups.rb +8 -0
  31. data/lib/ey-core/collections/auto_scaling_policies.rb +33 -0
  32. data/lib/ey-core/collections/container_clusters.rb +9 -0
  33. data/lib/ey-core/collections/container_service_deployments.rb +17 -0
  34. data/lib/ey-core/collections/environment_variables.rb +8 -0
  35. data/lib/ey-core/collections/servers.rb +4 -0
  36. data/lib/ey-core/models/account.rb +10 -0
  37. data/lib/ey-core/models/address.rb +2 -0
  38. data/lib/ey-core/models/application.rb +1 -0
  39. data/lib/ey-core/models/auto_scaling_alarm.rb +54 -0
  40. data/lib/ey-core/models/auto_scaling_group.rb +75 -0
  41. data/lib/ey-core/models/base_auto_scaling_policy.rb +61 -0
  42. data/lib/ey-core/models/container_service_deployment.rb +17 -0
  43. data/lib/ey-core/models/deployment.rb +1 -0
  44. data/lib/ey-core/models/environment.rb +57 -45
  45. data/lib/ey-core/models/environment_variable.rb +29 -0
  46. data/lib/ey-core/models/request.rb +6 -0
  47. data/lib/ey-core/models/server.rb +2 -0
  48. data/lib/ey-core/models/simple_auto_scaling_policy.rb +24 -0
  49. data/lib/ey-core/models/step_auto_scaling_policy.rb +24 -0
  50. data/lib/ey-core/models/target_auto_scaling_policy.rb +24 -0
  51. data/lib/ey-core/requests/create_account.rb +5 -0
  52. data/lib/ey-core/requests/create_address.rb +1 -0
  53. data/lib/ey-core/requests/create_application.rb +8 -7
  54. data/lib/ey-core/requests/create_auto_scaling_alarm.rb +69 -0
  55. data/lib/ey-core/requests/create_auto_scaling_group.rb +62 -0
  56. data/lib/ey-core/requests/create_auto_scaling_policy.rb +68 -0
  57. data/lib/ey-core/requests/create_environment.rb +2 -0
  58. data/lib/ey-core/requests/create_environment_variable.rb +39 -0
  59. data/lib/ey-core/requests/create_user.rb +8 -6
  60. data/lib/ey-core/requests/deploy_environment_application.rb +1 -0
  61. data/lib/ey-core/requests/destroy_auto_scaling_alarm.rb +49 -0
  62. data/lib/ey-core/requests/destroy_auto_scaling_group.rb +44 -0
  63. data/lib/ey-core/requests/destroy_auto_scaling_policy.rb +49 -0
  64. data/lib/ey-core/requests/discover_container_service_deployments.rb +71 -0
  65. data/lib/ey-core/requests/discover_server.rb +60 -0
  66. data/lib/ey-core/requests/get_applications.rb +1 -1
  67. data/lib/ey-core/requests/get_auto_scaling_alarm.rb +27 -0
  68. data/lib/ey-core/requests/get_auto_scaling_alarms.rb +34 -0
  69. data/lib/ey-core/requests/get_auto_scaling_group.rb +21 -0
  70. data/lib/ey-core/requests/get_auto_scaling_groups.rb +29 -0
  71. data/lib/ey-core/requests/get_auto_scaling_policies.rb +46 -0
  72. data/lib/ey-core/requests/get_auto_scaling_policy.rb +27 -0
  73. data/lib/ey-core/requests/get_deployments.rb +1 -1
  74. data/lib/ey-core/requests/get_environment_variable.rb +19 -0
  75. data/lib/ey-core/requests/get_environment_variables.rb +29 -0
  76. data/lib/ey-core/requests/get_environments.rb +1 -1
  77. data/lib/ey-core/requests/get_ssl_certificate.rb +1 -1
  78. data/lib/ey-core/requests/retrieve_docker_registry_credentials.rb +24 -0
  79. data/lib/ey-core/requests/update_auto_scaling_alarm.rb +45 -0
  80. data/lib/ey-core/requests/update_auto_scaling_group.rb +45 -0
  81. data/lib/ey-core/requests/update_auto_scaling_policy.rb +46 -0
  82. data/lib/ey-core/requests/update_environment_variable.rb +25 -0
  83. data/lib/ey-core/test_helpers/auto_scaling_helpers.rb +35 -0
  84. data/lib/ey-core/test_helpers.rb +2 -0
  85. data/lib/ey-core/version.rb +1 -1
  86. data/spec/addresses_spec.rb +2 -1
  87. data/spec/auto_scaling_alarms_spec.rb +40 -0
  88. data/spec/auto_scaling_groups_spec.rb +28 -0
  89. data/spec/auto_scaling_policies_spec.rb +94 -0
  90. data/spec/docker_registry_credentials_spec.rb +16 -0
  91. data/spec/environments_spec.rb +18 -0
  92. data/spec/servers_spec.rb +8 -0
  93. data/spec/spec_helper.rb +7 -0
  94. data/spec/support/core.rb +0 -2
  95. metadata +88 -18
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.2
4
+ version: 3.6.3
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-08-09 00:00:00.000000000 Z
11
+ date: 2021-10-28 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.1
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.1
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.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.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,10 +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
510
+ - lib/ey-core/collections/auto_scaling_groups.rb
511
+ - lib/ey-core/collections/auto_scaling_policies.rb
488
512
  - lib/ey-core/collections/backup_files.rb
489
513
  - lib/ey-core/collections/blueprints.rb
490
514
  - lib/ey-core/collections/components.rb
491
515
  - lib/ey-core/collections/contacts.rb
516
+ - lib/ey-core/collections/container_clusters.rb
517
+ - lib/ey-core/collections/container_service_deployments.rb
492
518
  - lib/ey-core/collections/costs.rb
493
519
  - lib/ey-core/collections/database_plan_usages.rb
494
520
  - lib/ey-core/collections/database_server_revisions.rb
@@ -498,6 +524,7 @@ files:
498
524
  - lib/ey-core/collections/database_services.rb
499
525
  - lib/ey-core/collections/deployments.rb
500
526
  - lib/ey-core/collections/environment_plan_usages.rb
527
+ - lib/ey-core/collections/environment_variables.rb
501
528
  - lib/ey-core/collections/environments.rb
502
529
  - lib/ey-core/collections/features.rb
503
530
  - lib/ey-core/collections/firewall_rules.rb
@@ -548,11 +575,15 @@ files:
548
575
  - lib/ey-core/models/application.rb
549
576
  - lib/ey-core/models/application_archive.rb
550
577
  - lib/ey-core/models/application_deployment.rb
578
+ - lib/ey-core/models/auto_scaling_alarm.rb
579
+ - lib/ey-core/models/auto_scaling_group.rb
551
580
  - lib/ey-core/models/backup_file.rb
581
+ - lib/ey-core/models/base_auto_scaling_policy.rb
552
582
  - lib/ey-core/models/billing.rb
553
583
  - lib/ey-core/models/blueprint.rb
554
584
  - lib/ey-core/models/component.rb
555
585
  - lib/ey-core/models/contact.rb
586
+ - lib/ey-core/models/container_service_deployment.rb
556
587
  - lib/ey-core/models/cost.rb
557
588
  - lib/ey-core/models/database_plan_usage.rb
558
589
  - lib/ey-core/models/database_server.rb
@@ -563,6 +594,7 @@ files:
563
594
  - lib/ey-core/models/deployment.rb
564
595
  - lib/ey-core/models/environment.rb
565
596
  - lib/ey-core/models/environment_plan_usage.rb
597
+ - lib/ey-core/models/environment_variable.rb
566
598
  - lib/ey-core/models/feature.rb
567
599
  - lib/ey-core/models/firewall.rb
568
600
  - lib/ey-core/models/firewall_rule.rb
@@ -585,10 +617,13 @@ files:
585
617
  - lib/ey-core/models/server_event.rb
586
618
  - lib/ey-core/models/server_usage.rb
587
619
  - lib/ey-core/models/service.rb
620
+ - lib/ey-core/models/simple_auto_scaling_policy.rb
588
621
  - lib/ey-core/models/ssl_certificate.rb
622
+ - lib/ey-core/models/step_auto_scaling_policy.rb
589
623
  - lib/ey-core/models/storage.rb
590
624
  - lib/ey-core/models/storage_user.rb
591
625
  - lib/ey-core/models/support_trial.rb
626
+ - lib/ey-core/models/target_auto_scaling_policy.rb
592
627
  - lib/ey-core/models/task.rb
593
628
  - lib/ey-core/models/token.rb
594
629
  - lib/ey-core/models/untracked_address.rb
@@ -613,11 +648,15 @@ files:
613
648
  - lib/ey-core/requests/create_alert.rb
614
649
  - lib/ey-core/requests/create_application.rb
615
650
  - lib/ey-core/requests/create_application_archive.rb
651
+ - lib/ey-core/requests/create_auto_scaling_alarm.rb
652
+ - lib/ey-core/requests/create_auto_scaling_group.rb
653
+ - lib/ey-core/requests/create_auto_scaling_policy.rb
616
654
  - lib/ey-core/requests/create_backup_file.rb
617
655
  - lib/ey-core/requests/create_database_server.rb
618
656
  - lib/ey-core/requests/create_database_service.rb
619
657
  - lib/ey-core/requests/create_database_service_snapshot.rb
620
658
  - lib/ey-core/requests/create_environment.rb
659
+ - lib/ey-core/requests/create_environment_variable.rb
621
660
  - lib/ey-core/requests/create_firewall.rb
622
661
  - lib/ey-core/requests/create_firewall_rule.rb
623
662
  - lib/ey-core/requests/create_keypair.rb
@@ -641,6 +680,9 @@ files:
641
680
  - lib/ey-core/requests/deploy_environment_application.rb
642
681
  - lib/ey-core/requests/deprovision_environment.rb
643
682
  - lib/ey-core/requests/destroy_addon.rb
683
+ - lib/ey-core/requests/destroy_auto_scaling_alarm.rb
684
+ - lib/ey-core/requests/destroy_auto_scaling_group.rb
685
+ - lib/ey-core/requests/destroy_auto_scaling_policy.rb
644
686
  - lib/ey-core/requests/destroy_blueprint.rb
645
687
  - lib/ey-core/requests/destroy_database_server.rb
646
688
  - lib/ey-core/requests/destroy_database_server_snapshot.rb
@@ -658,9 +700,11 @@ files:
658
700
  - lib/ey-core/requests/destroy_user.rb
659
701
  - lib/ey-core/requests/detach_address.rb
660
702
  - lib/ey-core/requests/disable_feature.rb
703
+ - lib/ey-core/requests/discover_container_service_deployments.rb
661
704
  - lib/ey-core/requests/discover_database_server.rb
662
705
  - lib/ey-core/requests/discover_database_server_snapshots.rb
663
706
  - lib/ey-core/requests/discover_provider_location.rb
707
+ - lib/ey-core/requests/discover_server.rb
664
708
  - lib/ey-core/requests/download_file.rb
665
709
  - lib/ey-core/requests/enable_feature.rb
666
710
  - lib/ey-core/requests/get_account.rb
@@ -682,6 +726,12 @@ files:
682
726
  - lib/ey-core/requests/get_application_deployment.rb
683
727
  - lib/ey-core/requests/get_application_deployments.rb
684
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
731
+ - lib/ey-core/requests/get_auto_scaling_group.rb
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
685
735
  - lib/ey-core/requests/get_backup_file.rb
686
736
  - lib/ey-core/requests/get_backup_files.rb
687
737
  - lib/ey-core/requests/get_billing.rb
@@ -708,6 +758,8 @@ files:
708
758
  - lib/ey-core/requests/get_environment_database_services.rb
709
759
  - lib/ey-core/requests/get_environment_logical_databases.rb
710
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
711
763
  - lib/ey-core/requests/get_environments.rb
712
764
  - lib/ey-core/requests/get_feature.rb
713
765
  - lib/ey-core/requests/get_features.rb
@@ -776,6 +828,7 @@ files:
776
828
  - lib/ey-core/requests/reset_password.rb
777
829
  - lib/ey-core/requests/reset_server_state.rb
778
830
  - lib/ey-core/requests/restart_environment_app_servers.rb
831
+ - lib/ey-core/requests/retrieve_docker_registry_credentials.rb
779
832
  - lib/ey-core/requests/run_cluster_application_action.rb
780
833
  - lib/ey-core/requests/run_environment_application_action.rb
781
834
  - lib/ey-core/requests/signup.rb
@@ -787,10 +840,14 @@ files:
787
840
  - lib/ey-core/requests/update_address.rb
788
841
  - lib/ey-core/requests/update_alert.rb
789
842
  - lib/ey-core/requests/update_application_archive.rb
843
+ - lib/ey-core/requests/update_auto_scaling_alarm.rb
844
+ - lib/ey-core/requests/update_auto_scaling_group.rb
845
+ - lib/ey-core/requests/update_auto_scaling_policy.rb
790
846
  - lib/ey-core/requests/update_billing.rb
791
847
  - lib/ey-core/requests/update_blueprint.rb
792
848
  - lib/ey-core/requests/update_connector.rb
793
849
  - lib/ey-core/requests/update_environment.rb
850
+ - lib/ey-core/requests/update_environment_variable.rb
794
851
  - lib/ey-core/requests/update_membership.rb
795
852
  - lib/ey-core/requests/update_provider_location.rb
796
853
  - lib/ey-core/requests/update_server.rb
@@ -804,6 +861,7 @@ files:
804
861
  - lib/ey-core/test_helpers.rb
805
862
  - lib/ey-core/test_helpers/account_helpers.rb
806
863
  - lib/ey-core/test_helpers/alert_helpers.rb
864
+ - lib/ey-core/test_helpers/auto_scaling_helpers.rb
807
865
  - lib/ey-core/test_helpers/client_helpers.rb
808
866
  - lib/ey-core/test_helpers/cucumber.rb
809
867
  - lib/ey-core/test_helpers/resource_helpers.rb
@@ -819,6 +877,9 @@ files:
819
877
  - spec/alerts_spec.rb
820
878
  - spec/application_archives_spec.rb
821
879
  - spec/applications_spec.rb
880
+ - spec/auto_scaling_alarms_spec.rb
881
+ - spec/auto_scaling_groups_spec.rb
882
+ - spec/auto_scaling_policies_spec.rb
822
883
  - spec/billing_spec.rb
823
884
  - spec/blueprints_spec.rb
824
885
  - spec/client_spec.rb
@@ -830,6 +891,7 @@ files:
830
891
  - spec/database_servers_spec.rb
831
892
  - spec/database_services_spec.rb
832
893
  - spec/deployments_spec.rb
894
+ - spec/docker_registry_credentials_spec.rb
833
895
  - spec/environment_plan_usage_spec.rb
834
896
  - spec/environments_spec.rb
835
897
  - spec/ey-core/cli/accounts_spec.rb
@@ -885,15 +947,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
885
947
  requirements:
886
948
  - - ">="
887
949
  - !ruby/object:Gem::Version
888
- version: 2.2.2
950
+ version: '2.5'
889
951
  required_rubygems_version: !ruby/object:Gem::Requirement
890
952
  requirements:
891
953
  - - ">="
892
954
  - !ruby/object:Gem::Version
893
955
  version: '0'
894
956
  requirements: []
895
- rubyforge_project:
896
- rubygems_version: 2.5.2
957
+ rubygems_version: 3.1.2
897
958
  signing_key:
898
959
  specification_version: 4
899
960
  summary: Client library providing real and mock functionality for accessing Engine
@@ -902,6 +963,8 @@ test_files:
902
963
  - features/accounts.feature
903
964
  - features/applications.feature
904
965
  - features/current_user.feature
966
+ - features/docker_registry_credentials.feature
967
+ - features/environment_variables.feature
905
968
  - features/environments.feature
906
969
  - features/init.feature
907
970
  - features/login.feature
@@ -910,6 +973,8 @@ test_files:
910
973
  - features/step_definitions/applications_steps.rb
911
974
  - features/step_definitions/current_user_steps.rb
912
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
913
978
  - features/step_definitions/environments_steps.rb
914
979
  - features/step_definitions/version_steps.rb
915
980
  - features/support/account_helpers.rb
@@ -922,6 +987,7 @@ test_files:
922
987
  - features/support/deployment_helpers.rb
923
988
  - features/support/env.rb
924
989
  - features/support/environment_helpers.rb
990
+ - features/support/environment_variable_helpers.rb
925
991
  - features/support/fake_kernel.rb
926
992
  - features/support/io.rb
927
993
  - features/support/mock_api.rb
@@ -939,6 +1005,9 @@ test_files:
939
1005
  - spec/alerts_spec.rb
940
1006
  - spec/application_archives_spec.rb
941
1007
  - spec/applications_spec.rb
1008
+ - spec/auto_scaling_alarms_spec.rb
1009
+ - spec/auto_scaling_groups_spec.rb
1010
+ - spec/auto_scaling_policies_spec.rb
942
1011
  - spec/billing_spec.rb
943
1012
  - spec/blueprints_spec.rb
944
1013
  - spec/client_spec.rb
@@ -950,6 +1019,7 @@ test_files:
950
1019
  - spec/database_servers_spec.rb
951
1020
  - spec/database_services_spec.rb
952
1021
  - spec/deployments_spec.rb
1022
+ - spec/docker_registry_credentials_spec.rb
953
1023
  - spec/environment_plan_usage_spec.rb
954
1024
  - spec/environments_spec.rb
955
1025
  - spec/ey-core/cli/accounts_spec.rb