recipiez 0.2.6 → 0.2.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module Recipiez
2
- VERSION = '0.2.6'
2
+ VERSION = '0.2.7'
3
3
  end
data/recipes/nginx.rb CHANGED
@@ -28,7 +28,7 @@ Capistrano::Configuration.instance(true).load do
28
28
  task :nodejs do
29
29
 
30
30
  _cset :node_port, 3000
31
- _cset :ssl, 'off'
31
+ # _cset :ssl, 'off'
32
32
 
33
33
 
34
34
  put render("nginx_node", binding), "#{application}.conf"
@@ -25,7 +25,7 @@ server {
25
25
  }
26
26
 
27
27
 
28
- <% if ssl == 'on' %>
28
+ <% if ssl_enabled == 'on' %>
29
29
  # https server definition, remember only one https site per IP
30
30
 
31
31
  server {
@@ -48,4 +48,6 @@ server {
48
48
  proxy_pass http://<%= application %>;
49
49
  }
50
50
  }
51
+ <% else %>
52
+ <%= ssl_enabled %>
51
53
  <% end %>
data/release_gem.sh ADDED
@@ -0,0 +1,5 @@
1
+ #!/bin/zsh
2
+
3
+ rm *.gem
4
+ gem build recipiez.gemspec
5
+ gem push `ls *.gem`
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recipiez
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 6
10
- version: 0.2.6
9
+ - 7
10
+ version: 0.2.7
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alastair Brunton
@@ -91,6 +91,7 @@ files:
91
91
  - recipes/thin.rb
92
92
  - recipes/tolk.rb
93
93
  - recipiez.gemspec
94
+ - release_gem.sh
94
95
  has_rdoc: true
95
96
  homepage: http://github.com/pyrat/deployment_recipiez
96
97
  licenses: []