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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19b9deba6688d3d0a94eb29c1500cea5a11a6d9c
4
- data.tar.gz: 2eaf747de93672d4f066b2c5b8fbaf6773a8b258
3
+ metadata.gz: d3c667a75d03c78d5eeb11c9a695a96f2f05c133
4
+ data.tar.gz: c3f7dab0a9f2cd0357f6e0f55f5133b1684199b5
5
5
  SHA512:
6
- metadata.gz: 7daccf75e1bd4da3065dc2fbd67fa0c6c91caf22ff60b67e1914b5cb954b37058fab78c7e3545ea0a4c74861bc2857c6f8dcc3d9b881bf1e992633ec55ba5c04
7
- data.tar.gz: 1041a1fd445af376e16f57b7c4fddf1d1ede1ca806367a4fb53a8393c26953073403e11fd5f9c0823ed62a905ce6557d7204d4c14ee9ec57a899d5edb1711a58
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
@@ -1,5 +1,5 @@
1
1
  module Dokkufy
2
- VERSION = "0.2.0" unless defined? Dokkufy::VERSION
2
+ VERSION = "0.2.1" unless defined? Dokkufy::VERSION
3
3
  NAME = "dokkufy" unless defined? Dokkufy::NAME
4
4
  DESCRIPTION = "Dokku Provisioning Made Easy" unless defined? Dokkufy::DESCRIPTION
5
5
  end
@@ -23,7 +23,7 @@ module Dokkufy
23
23
 
24
24
  def self.all with_notes = false
25
25
  return @plugins if @plugins
26
- open("https://github.com/progrium/dokku/wiki/Plugins") do |f|
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|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dokkufy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cristiano Betta