ey-pro-cli 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ey_pro_cli.rb +2 -2
- data/lib/ey_pro_cli/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 35ac157ca7e020c4ef2216ae82f3ec660f39882b
|
4
|
+
data.tar.gz: fc820d158a5ff2ef3b8d1128a05b68330f2226b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: abf177cc22c8411fd9bb0b3a24ab26777a4e547a7b28e847a9a2f611c6806aacdb41b2b5e01a8b59ef6d771a1ff4722a2bfe3ea639685c3dbc457564072c9d15
|
7
|
+
data.tar.gz: 1361d7c199d3dfee7ebd08054c2c7ebf1750b9fa90a87845360e8641fcd2cc218e5b3e891400a063b2e3de8b600768f5f64ce675bf1c1d93b06638255d4289d4
|
data/lib/ey_pro_cli.rb
CHANGED
@@ -57,10 +57,10 @@ class EyProCli < Thor
|
|
57
57
|
|
58
58
|
desc "deploy [OPTIONS]", "Deploy your EY Pro application"
|
59
59
|
option :environment, desc: "Name of the environment to deploy to", required: true, aliases: "-e"
|
60
|
-
option :account, desc: "Name of the account that the environment resides in. If no account is specified, the app will deploy to the first environment that meets the criteria, in the accounts you have access to.", aliases: "-a"
|
60
|
+
option :account, desc: "Name or ID of the account that the environment resides in. If no account is specified, the app will deploy to the first environment that meets the criteria, in the accounts you have access to.", aliases: "-a"
|
61
61
|
option :ref, desc: "A git reference to deploy"
|
62
62
|
option :migrate, desc: "The migration command to run"
|
63
|
-
option :app, desc: "Application name to deploy. If :account is not specified, this will be the first app that matches the criteria in the accounts you have access to.", required: true
|
63
|
+
option :app, desc: "Application name or ID to deploy. If :account is not specified, this will be the first app that matches the criteria in the accounts you have access to.", required: true
|
64
64
|
option :stream, desc: "Stream deploy output to console"
|
65
65
|
option "no-migrate", desc: "Do not run migration command"
|
66
66
|
option "no-update-check", desc: "Do not check for updates"
|
data/lib/ey_pro_cli/version.rb
CHANGED