aptible-cli 0.6.3 → 0.6.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/lib/aptible/cli/subcommands/ps.rb +2 -1
- data/lib/aptible/cli/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a00f24436f3849b23c677260e75b31f661eb6e8
|
4
|
+
data.tar.gz: 857e002bd160ca13dbb846d41527d30138be7ee3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c2da48570c2db9dc2edb39f1455f6ea10131e35c6719d5d0a69b18a4619e30b8585cea0d8d12f0f99258c9ed550b7dd8eb3642a2c712b764aac4a36a4a22a51
|
7
|
+
data.tar.gz: 33fc2f342c37a66c2d0e2684384f7bf65304e9a403fe7de9dbbd540f36cf99ed9b15fdb29bd56c8938ae8e7af6e020be9007c97d414eb83298ece9c6f478d1f5
|
data/README.md
CHANGED
@@ -26,6 +26,8 @@ From `aptible help`:
|
|
26
26
|
Commands:
|
27
27
|
aptible apps # List all applications
|
28
28
|
aptible apps:create HANDLE # Create a new application
|
29
|
+
aptible apps:deprovision # Deprovision an app
|
30
|
+
aptible apps:scale TYPE NUMBER # Scale app to NUMBER of instances
|
29
31
|
aptible config # Print an app's current configuration
|
30
32
|
aptible config:add # Add an ENV variable to an app
|
31
33
|
aptible config:rm # Remove an ENV variable from an app
|
@@ -33,13 +35,16 @@ Commands:
|
|
33
35
|
aptible config:unset # Alias for config:rm
|
34
36
|
aptible db:clone SOURCE DEST # Clone a database to create a new one
|
35
37
|
aptible db:create HANDLE # Create a new database
|
38
|
+
aptible db:deprovision HANDLE # Deprovision a database
|
36
39
|
aptible db:dump HANDLE # Dump a remote database to file
|
37
40
|
aptible db:execute HANDLE SQL_FILE # Executes sql against a database
|
38
41
|
aptible db:list # List all databases
|
39
42
|
aptible db:tunnel HANDLE # Create a local tunnel to a database
|
43
|
+
aptible domains # Print an app's current virtual domains
|
40
44
|
aptible help [COMMAND] # Describe available commands or one specific command
|
41
45
|
aptible login # Log in to Aptible
|
42
|
-
aptible logs # Follows logs from a running app
|
46
|
+
aptible logs # Follows logs from a running app - DEPRECATED
|
47
|
+
aptible ps # Display running processes for an app - DEPRECATED
|
43
48
|
aptible rebuild # Rebuild an app, and restart its services
|
44
49
|
aptible restart # Restart all services associated with an app
|
45
50
|
aptible ssh [COMMAND] # Run a command against an app
|
@@ -62,6 +67,7 @@ Commands:
|
|
62
67
|
* Rich Humphrey ([@rdh](https://github.com/rdh))
|
63
68
|
* Daniel Levenson ([@dleve123](https://github.com/dleve123))
|
64
69
|
* Ryan Aipperspach ([@ryanaip](https://github.com/ryanaip))
|
70
|
+
* Chas Ballew ([@chasballew](https://github.com/chasballew))
|
65
71
|
|
66
72
|
## Copyright and License
|
67
73
|
|
@@ -10,10 +10,11 @@ module Aptible
|
|
10
10
|
include Helpers::App
|
11
11
|
include Helpers::Env
|
12
12
|
|
13
|
-
desc 'ps', 'Display running processes for an app'
|
13
|
+
desc 'ps', 'Display running processes for an app - DEPRECATED'
|
14
14
|
app_options
|
15
15
|
def ps
|
16
16
|
app = ensure_app(options)
|
17
|
+
deprecated('This command is deprecated on Aptible v2 stacks.')
|
17
18
|
|
18
19
|
host = app.account.bastion_host
|
19
20
|
port = app.account.dumptruck_port
|
data/lib/aptible/cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aptible-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Frank Macreery
|
@@ -200,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
200
200
|
version: '0'
|
201
201
|
requirements: []
|
202
202
|
rubyforge_project:
|
203
|
-
rubygems_version: 2.
|
203
|
+
rubygems_version: 2.6.2
|
204
204
|
signing_key:
|
205
205
|
specification_version: 4
|
206
206
|
summary: Command-line interface for Aptible services
|