gearship 0.1.3 → 0.1.4

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: 8aeb3e4ca5216f7eed6e9cb8816bce3012c914ac
4
- data.tar.gz: eb9caa170948c310dbab24a250e139edc2885761
3
+ metadata.gz: a09c0d3d52ec47c3437ef977dc3f8b7d848d3b07
4
+ data.tar.gz: a2ff93153c240848de25851cf9b5ee759478cdbb
5
5
  SHA512:
6
- metadata.gz: bb2d7fab9e9c175ae7b07295723c317fda1fb878130f76efb2178851fcba6a7c9d2f2cb052673495d2f380d6219593da25d7425cc6fb52b9f1962a913b8d6b21
7
- data.tar.gz: 47c33cf91042edf84b3b76f8400368e68f35c2ada3e2550213683d11308da1071bec810ebcfa64a82e55f71b49d2708bf26a57c584b11cc054d1ef05261919cf
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
+ ![](deployment.png)
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.3' # retrieve this value by: Gem.loaded_specs['gearship'].version.to_s
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.docker_repo %>
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 %>
@@ -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://github.com/leonas/gearship-actions/install_newrelic.sh
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.3
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-09 00:00:00.000000000 Z
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