dokkufy 0.1.2 → 0.1.3

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: 594f74489f562803240565d523368f4c3d0d3a99
4
- data.tar.gz: da9659347b3cf674b9ad03bee8aaf7a9ff98adc4
3
+ metadata.gz: deeaa8ef59c14b0a4c4aadcda3199642f769713e
4
+ data.tar.gz: e5ad29c3a2e29cc78c8f64fe6993ba96ab0eb9db
5
5
  SHA512:
6
- metadata.gz: cf18c0c792d9e8b0366b1e322bcdaa5a41773a080a8f9b6f08d6b7d66125eff9c9d5cdd9a01c7f66d8b53074eb38854d9b04d9bc01f1bee660a3ecaaeb80f170
7
- data.tar.gz: 6ccc16485134a26857daf888415244c1fc4490df5c9552373626f8b71c0b8069d94d3a0f26bad9dc48e894b074cc3a063397962b765ce92358a557dbfb3e6bd4
6
+ metadata.gz: 3c9fb43cddf2b1570b96b7671806714535b32d862e044d6cac639500118e7192d698d4e978e335372576d342f75ca950a760481a4ad562867140347045fe9397
7
+ data.tar.gz: 6cf7daa5e7c7dcb91b585bb83e994ec70b535822aa679261f54e47ad2319ef9cdb3666c4d077f4c92bb0463cef037559bf03502886dae8cd2093d9c95583609e
data/README.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  A [Dokku](https://github.com/progrium/dokku) toolbelt inspired by the [Heroku toolbelt](https://toolbelt.heroku.com/)
4
4
 
5
+ ## Installation
6
+
7
+ ```
8
+ gem install dokkufy
9
+ ```
10
+
5
11
  ## Basic usage
6
12
 
7
13
  Want to build your own Heroku? Dokku and Dokkufy make this possible.
@@ -113,6 +119,8 @@ $ ssh -t dokku@example.com run test_app ls
113
119
 
114
120
  ## Release notes
115
121
 
122
+ <<<<<<< HEAD
123
+ * **0.1.3** Applies double install fix on 14.04
116
124
  * **0.1.0** Adds the `dokku` command
117
125
  * **0.0.7** Adds the (un)dokkufication of apps
118
126
  * **0.0.6** Adds plugin uninstall
data/lib/dokkufy/info.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Dokkufy
2
- VERSION = "0.1.2" unless defined? Dokkufy::VERSION
2
+ VERSION = "0.1.3" unless defined? Dokkufy::VERSION
3
3
  NAME = "dokkufy" unless defined? Dokkufy::NAME
4
4
  DESCRIPTION = "A Dokku toolchain" unless defined? Dokkufy::DESCRIPTION
5
5
  end
@@ -3,7 +3,11 @@ VERSION=$(lsb_release -sr)
3
3
  OLD_VERSION="12.04"
4
4
 
5
5
  if [ "$VERSION" == "$OLD_VERSION" ]; then
6
+ # required for 12.04
6
7
  sudo apt-get install -y python-software-properties
8
+ else
9
+ # required workaround for bug on 14.04
10
+ wget -qO- https://raw.github.com/progrium/dokku/$OPTION1/bootstrap.sh | sudo DOKKU_TAG=v0.2.3 bash
7
11
  fi
8
12
 
9
13
  wget -qO- https://raw.github.com/progrium/dokku/$OPTION1/bootstrap.sh | sudo DOKKU_TAG=v0.2.3 bash
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.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cristiano Betta