rumm 0.0.19 → 0.0.20

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
2
  SHA1:
3
- metadata.gz: fe5d6831240abfee40f6591612384b8caf7b4ebe
4
- data.tar.gz: cee621c68f37ee21065d3c3b2c987a57c6c69589
3
+ metadata.gz: 97357391b81a9c9f37e2580228e2009b11d64df4
4
+ data.tar.gz: 8b0dd6acd5dd5a33674d4f41705296dcd6fa29d7
5
5
  SHA512:
6
- metadata.gz: 94aed8b98a7651f86156f4f38ddfe5d7c87403572c71ef9059cf26dd4c76bf89065ccee3dd00503414f57a69a0f7c18a209ff54bd76e4ca9b2e9803341185c87
7
- data.tar.gz: 3a3de13508d6864f945c1c7bf6bd7be6713a320bb83ae92ab0e6eea585c5bf0fdd0bd2b11346674861a95f6bd97e01c5c59523a2a6227186b5aa4107ca91a142
6
+ metadata.gz: a509e66c8057eb5fa97117d30b02c5dd425a4ebec5cd1b3cedbe49af07f0f7c3e2828e84ad8100d79ce3ef15cb55f9f5494c5cb0f0944cd5873c1958a37e40c4
7
+ data.tar.gz: fd7042e235e672fb6da464918585bf6b19424ab6203d2c6ad289b7171f2cb85685c99f1f376bad637ef579a4803cc85222994d6510588136f0505b0eebcf1c62
@@ -0,0 +1,75 @@
1
+ Authentication:
2
+ rumm login
3
+ rumm logout
4
+
5
+ Images:
6
+ rumm show images
7
+ rumm show images
8
+
9
+ Servers:
10
+ rumm show servers
11
+ rumm show server :id
12
+ rumm create server
13
+ rumm update server :id
14
+ rumm destroy server :id
15
+ rumm ssh :id
16
+
17
+ Loadbalancers:
18
+ rumm show loadbalancers
19
+ rumm show loadbalancer :id
20
+ rumm create loadbalancer
21
+ rumm update loadbalancer :id
22
+ rumm destroy loadbalancer :id
23
+
24
+ Nodes:
25
+ rumm show nodes on loadbalancer :loadbalancer_id
26
+ rumm show node :id on loadbalancer :loadbalancer_id
27
+ rumm create node on loadbalancer :loadbalancer_id
28
+ rumm update node :id on loadbalancer :loadbalancer_id
29
+ rumm destroy node :id on loadbalancer :loadbalancer_id
30
+
31
+ Dbinstances:
32
+ rumm show dbinstances
33
+ rumm show dbinstance :id
34
+ rumm create dbinstance
35
+ rumm update dbinstance :id
36
+ rumm destroy dbinstance :id
37
+
38
+ Databases:
39
+ rumm show databases on dbinstance :instance_id
40
+ rumm show database :id on dbinstance :instance_id
41
+ rumm create database on dbinstance :instance_id
42
+ rumm update database :id on dbinstance :instance_id
43
+ rumm destroy database :id on dbinstance :instance_id
44
+
45
+ Users:
46
+ rumm show users on dbinstance :dbinstance_id
47
+ rumm show user :id on dbinstance :dbinstance_id
48
+ rumm create user on dbinstance :dbinstance_id
49
+
50
+ Containers:
51
+ rumm show containers
52
+ rumm show container :id
53
+ rumm create container
54
+ rumm update container :id
55
+ rumm destroy container :id
56
+
57
+ Files:
58
+ rumm show files in container :container_id
59
+ rumm show file :id on container :container_id
60
+ rumm create file :id on container :container_id
61
+ rumm update file :id on container :container_id
62
+ rumm destroy file :id on container :container_id
63
+ rumm download file :id on container :container_id
64
+
65
+ Volumes:
66
+ rumm show volumes
67
+ rumm show volume :id
68
+ rumm create volume
69
+ rumm update volume :id
70
+ rumm destroy volume :id
71
+
72
+ Attachments:
73
+ rumm show attachments on server :server_id
74
+ rumm attach volume :id to server :server_id
75
+ rumm detach volume :id from server :server_id
data/app/help/routes.rb CHANGED
@@ -8,6 +8,8 @@ def self.help(path)
8
8
  }
9
9
  end
10
10
 
11
+ help('commands')
12
+
11
13
  help('login')
12
14
  help('logout')
13
15
 
@@ -8,81 +8,6 @@ Rumm: A tasty tool for hackers and pirates
8
8
  Password: ******
9
9
  logged in as rstevenson, credentials written to ~/.netrc
10
10
 
11
- And you're good to go! The following commands are available in your Rumm
12
- environment:
11
+ And you're good to go! For a list of all commands, run:
13
12
 
14
- Authentication:
15
- rumm login
16
- rumm logout
17
-
18
- Images:
19
- rumm show images
20
- rumm show images
21
-
22
- Servers:
23
- rumm show servers
24
- rumm show server :id
25
- rumm create server
26
- rumm update server :id
27
- rumm destroy server :id
28
- rumm ssh :id
29
-
30
- Loadbalancers:
31
- rumm show loadbalancers
32
- rumm show loadbalancer :id
33
- rumm create loadbalancer
34
- rumm update loadbalancer :id
35
- rumm destroy loadbalancer :id
36
-
37
- Nodes:
38
- rumm show nodes on loadbalancer :loadbalancer_id
39
- rumm show node :id on loadbalancer :loadbalancer_id
40
- rumm create node on loadbalancer :loadbalancer_id
41
- rumm update node :id on loadbalancer :loadbalancer_id
42
- rumm destroy node :id on loadbalancer :loadbalancer_id
43
-
44
- Dbinstances:
45
- rumm show dbinstances
46
- rumm show dbinstance :id
47
- rumm create dbinstance
48
- rumm update dbinstance :id
49
- rumm destroy dbinstance :id
50
-
51
- Databases:
52
- rumm show databases on dbinstance :instance_id
53
- rumm show database :id on dbinstance :instance_id
54
- rumm create database on dbinstance :instance_id
55
- rumm update database :id on dbinstance :instance_id
56
- rumm destroy database :id on dbinstance :instance_id
57
-
58
- Users:
59
- rumm show users on dbinstance :dbinstance_id
60
- rumm show user :id on dbinstance :dbinstance_id
61
- rumm create user on dbinstance :dbinstance_id
62
-
63
- Containers:
64
- rumm show containers
65
- rumm show container :id
66
- rumm create container
67
- rumm update container :id
68
- rumm destroy container :id
69
-
70
- Files:
71
- rumm show files in container :container_id
72
- rumm show file :id on container :container_id
73
- rumm create file :id on container :container_id
74
- rumm update file :id on container :container_id
75
- rumm destroy file :id on container :container_id
76
- rumm download file :id on container :container_id
77
-
78
- Volumes:
79
- rumm show volumes
80
- rumm show volume :id
81
- rumm create volume
82
- rumm update volume :id
83
- rumm destroy volume :id
84
-
85
- Attachments:
86
- rumm show attachments on server :server_id
87
- rumm attach volume :id to server :server_id
88
- rumm detach volume :id from server :server_id
13
+ rumm help commands
data/lib/rumm/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Rumm
2
- VERSION = "0.0.19"
2
+ VERSION = "0.0.20"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rumm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.19
4
+ version: 0.0.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charles Lowell
@@ -29,7 +29,7 @@ cert_chain:
29
29
  UgImJlChAzCoDP9zi9tdm6jAr7ttF25R9PPYr11ILb7dYe3qUzlNlM6zJx/nb31b
30
30
  IhdyRVup4qLcqYSTPsm6u7VA
31
31
  -----END CERTIFICATE-----
32
- date: 2013-07-19 00:00:00.000000000 Z
32
+ date: 2013-07-20 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: mvcli
@@ -106,6 +106,7 @@ files:
106
106
  - app/forms/servers/create_form.rb
107
107
  - app/forms/users/create_form.rb
108
108
  - app/help/attach_volume.txt
109
+ - app/help/commands.txt
109
110
  - app/help/create_container.txt
110
111
  - app/help/create_database.txt
111
112
  - app/help/create_dbinstance.txt