recipiez 0.2.10 → 0.2.11
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.
- data/lib/recipiez/version.rb +1 -1
- data/recipes/node.rb +9 -0
- metadata +4 -4
data/lib/recipiez/version.rb
CHANGED
data/recipes/node.rb
CHANGED
|
@@ -11,6 +11,15 @@ Capistrano::Configuration.instance(true).load do
|
|
|
11
11
|
put render("upstart", binding), "#{application}.conf"
|
|
12
12
|
sudo "mv #{application}.conf /etc/init/#{application}.conf"
|
|
13
13
|
end
|
|
14
|
+
|
|
15
|
+
desc "Install the nodejs components to the server"
|
|
16
|
+
task :setup do
|
|
17
|
+
recipiez::setup
|
|
18
|
+
nginx::nodejs
|
|
19
|
+
node::generate_upstart
|
|
20
|
+
monit::node
|
|
21
|
+
logrotate::configure
|
|
22
|
+
end
|
|
14
23
|
|
|
15
24
|
end
|
|
16
25
|
|
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:
|
|
4
|
+
hash: 1
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 11
|
|
10
|
+
version: 0.2.11
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Alastair Brunton
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2012-
|
|
18
|
+
date: 2012-05-24 00:00:00 +02:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|