dokkufy 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -31
- data/lib/dokkufy/info.rb +1 -1
- data/lib/dokkufy/plugin.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: d3c667a75d03c78d5eeb11c9a695a96f2f05c133
|
4
|
+
data.tar.gz: c3f7dab0a9f2cd0357f6e0f55f5133b1684199b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f43d2b706aba06fd2cc9c6dac2d006ccc753ec656ca5838648abf103d84f39bd5787f791a9dfdc923feaffbc492cf516abf88267b22cef48e02a6d07bfcd7cd
|
7
|
+
data.tar.gz: dbf958ac84c3311622a58d6fd93c3d3a148c7537dccf8276afb9d5acf3f584a67d1e32b99dcefa303da7288b2461e5dfab80660682b2462b27691c1e8e1e1110
|
data/README.md
CHANGED
@@ -20,7 +20,6 @@ Want to build your own Heroku? Dokku and Dokkufy make this possible.
|
|
20
20
|
3. Change directories to your app
|
21
21
|
4. Dokkufy your app `dokkufy app`
|
22
22
|
5. Deploy your app `git push dokku master`
|
23
|
-
6. Control your app using the `dokku` command (see `dokku help` for available commands)
|
24
23
|
|
25
24
|
## Commands
|
26
25
|
|
@@ -36,8 +35,6 @@ dokkufy <command>
|
|
36
35
|
plugin:uninstall uninstalls a plugin on the server
|
37
36
|
app adds a dokku remote for a server to an app
|
38
37
|
app:clear removes a dokku remote for a server for an app
|
39
|
-
|
40
|
-
dokku <command> runs dokku commands on the server attached to this app
|
41
38
|
```
|
42
39
|
|
43
40
|
### dokkufy server
|
@@ -92,36 +89,9 @@ dokkufy app:clear
|
|
92
89
|
|
93
90
|
Removes any `dokku` remotes for the local git repository and deletes the `.dokkurc` file.
|
94
91
|
|
95
|
-
### dokku
|
96
|
-
|
97
|
-
```sh
|
98
|
-
dokku <command>
|
99
|
-
```
|
100
|
-
|
101
|
-
Runs the command on the Dokku server attached to this app. Intelligently determines the remote address if the app has been dokkufied, and automatically adds the app name where needed.
|
102
|
-
|
103
|
-
Some examples:
|
104
|
-
|
105
|
-
```sh
|
106
|
-
dokku help # runs `dokku help` on server
|
107
|
-
dokku run ls # runs `dokku run <app_name> ls` on server
|
108
|
-
```
|
109
|
-
|
110
|
-
Every `dokku` command translates to an auto generated ssh call. The `<app_name>` is automatically added if the response returns a "App <command> not found".
|
111
|
-
|
112
|
-
Some examples
|
113
|
-
|
114
|
-
```sh
|
115
|
-
cat .dokkurc # content of the .dokkurc
|
116
|
-
$ dokku@example.com:test_app
|
117
|
-
dokku help
|
118
|
-
$ ssh -t dokku@example.com help # the actual command executed
|
119
|
-
dokku run ls # a command that requires an app name
|
120
|
-
$ ssh -t dokku@example.com run test_app ls
|
121
|
-
```
|
122
|
-
|
123
92
|
## Release notes
|
124
93
|
|
94
|
+
* **0.2.0** Dropped Toolchain functionality in favor of other tools
|
125
95
|
* **0.1.6** Locking dependencies down further
|
126
96
|
* **0.1.5** Using classic style commander
|
127
97
|
* **0.1.4** Checks for SSH key before installing on server
|
data/lib/dokkufy/info.rb
CHANGED
data/lib/dokkufy/plugin.rb
CHANGED
@@ -23,7 +23,7 @@ module Dokkufy
|
|
23
23
|
|
24
24
|
def self.all with_notes = false
|
25
25
|
return @plugins if @plugins
|
26
|
-
open("
|
26
|
+
open("http://progrium.viewdocs.io/dokku/plugins") do |f|
|
27
27
|
hp = Hpricot(f)
|
28
28
|
plugins = hp.search("tbody tr td").each_slice(3)
|
29
29
|
@plugins = plugins.each_with_index.map do |plugin, index|
|