gearship 0.1.3 → 0.1.4
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 +4 -4
- data/README.md +4 -0
- data/deployment.png +0 -0
- data/gearship.gemspec +1 -1
- data/lib/templates/actions/start_app.sh +1 -1
- data/lib/templates/gearship.yml +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a09c0d3d52ec47c3437ef977dc3f8b7d848d3b07
|
4
|
+
data.tar.gz: a2ff93153c240848de25851cf9b5ee759478cdbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a71a1f40d23de2c94e1941370a87e41ad87e34f5fc9542c48c2e1436b09251d30fe5a8d3cdb9064e3cd4c69e4f550a39eb993f44921955a867840d145739952a
|
7
|
+
data.tar.gz: 6b83b654d61662cfd5242ac83c1b50824ec1a288177fbdcf890699efa4a449e6f871f0212c37463262c56086733c933e47f544c87cdaa43720dd35bd17331913
|
data/README.md
CHANGED
@@ -79,3 +79,7 @@ Attributes defined in `gearship.yml` are accessible from any file with `<%= @att
|
|
79
79
|
#### Bash
|
80
80
|
Attributes defined in `gearship.yml` are split into individual files in `compiled/attributes`.
|
81
81
|
Refer to them by `$(cat attributes/attribute_name)` in the script.
|
82
|
+
|
83
|
+
---------
|
84
|
+
|
85
|
+

|
data/deployment.png
ADDED
Binary file
|
data/gearship.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = 'gearship'
|
5
|
-
spec.version = '0.1.
|
5
|
+
spec.version = '0.1.4'
|
6
6
|
spec.authors = ['Leonas']
|
7
7
|
spec.email = ['leonas@leonas.io']
|
8
8
|
spec.homepage = 'http://github.com/leonas/gearship'
|
@@ -1,3 +1,3 @@
|
|
1
1
|
docker login -u="<%= @attributes.docker_username %>" -p="<%= @attributes.docker_password %>"
|
2
|
-
docker pull <%= @attributes.
|
2
|
+
docker pull <%= @attributes.app_repo %>
|
3
3
|
docker run -d -p <%= @attributes.app_port_map %> --name=<%= @attributes.app_name %> --restart=always -d <%= @attributes.app_repo %>
|
data/lib/templates/gearship.yml
CHANGED
@@ -10,7 +10,7 @@ attributes:
|
|
10
10
|
|
11
11
|
# Remote actions here will be downloaded to compiled/actions.
|
12
12
|
actions:
|
13
|
-
# install_newrelic: https://
|
13
|
+
# install_newrelic: https://raw.githubusercontent.com/Leonas/gearship-actions/master/install_newrelic.sh
|
14
14
|
|
15
15
|
# Listed files will be copied to compiled/files.
|
16
16
|
# files:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gearship
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Leonas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-06-
|
11
|
+
date: 2017-06-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -65,6 +65,7 @@ files:
|
|
65
65
|
- LICENSE
|
66
66
|
- README.md
|
67
67
|
- bin/gearship
|
68
|
+
- deployment.png
|
68
69
|
- gearship.gemspec
|
69
70
|
- gearship.png
|
70
71
|
- lib/gearship.rb
|