bricks-deploy 0.6.9 → 0.6.10

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: ce49ffda2f73ee00e5b06d51fca7924a771bdc28
4
- data.tar.gz: 0affdab90edaf72635aecb9a1141106d7910a14c
3
+ metadata.gz: 65885ccb6f1af101a7b039f80ef7abf89658034c
4
+ data.tar.gz: 872f0193dd18091f6268e10f5c7244ef3a3fa444
5
5
  SHA512:
6
- metadata.gz: 244f211d089eed89ecccddf01d87fb3cfdd923c60ffc9cf9235ce98ab1964e536363d9ad3078ce9af8b8df0b07d1b8b0b24ea29acc30a55c132898242410be1d
7
- data.tar.gz: b2af4b3fc19f94e0f9d965c35b6e14c6c84897947307f7680281222a0418c1592c921410f9a1c2a3bf5288e3769d29c8e70b37e36c08c66124dd419f184894c6
6
+ metadata.gz: f40a40cd193b0329f9019a09628bde3555a2f516fb0e38c6ba8059a26a0b95dde787ae803909f3df4fc24ffae0e6f34bd39eac483ce30106fa70cceabd84a543
7
+ data.tar.gz: 39e3198fc93b49fc511383df183536f9e2209cc4d9219e3a9ddfc607552fa95d27de9e989e13601c8801398fe99c5cd8753e3cd8dcce699e2259b457821a177d
@@ -18,6 +18,7 @@ class BricksDeploy::Generator < Thor::Group
18
18
  def copy_restart_callbacks
19
19
  copy_hook 'before_restart.sh', 'bin/deploy/remote/before_restart'
20
20
  copy_hook 'after_restart.sh', 'bin/deploy/remote/after_restart'
21
+ copy_hook 'setup.sh', 'bin/deploy/remote/setup'
21
22
  end
22
23
 
23
24
  private
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- echo "after restart\n"
3
+ echo "After restart of Bricks app ...\n"
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- echo "before restart\n"
3
+ echo "Before restart of Bricks app ...\n"
@@ -0,0 +1,3 @@
1
+ #!/bin/sh
2
+
3
+ echo "Setting up Bricks app ... \n"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bricks-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.9
4
+ version: 0.6.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mislav Marohnić
@@ -72,6 +72,7 @@ files:
72
72
  - lib/bricks_deploy/templates/after_restart.sh
73
73
  - lib/bricks_deploy/templates/before_restart.sh
74
74
  - lib/bricks_deploy/templates/restart.sh
75
+ - lib/bricks_deploy/templates/setup.sh
75
76
  - lib/hooks/post-receive.sh
76
77
  - spec/configuration_spec.rb
77
78
  homepage: https://github.com/20steps/bricks-deploy