capistrano_node_recipes 1.2.13 → 1.2.14
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/capistrano_node_recipes.gemspec +1 -1
- data/lib/capistrano/node-deploy.rb +11 -11
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27b854b7ef8249b764283c54ae28252389ba24a1
|
4
|
+
data.tar.gz: 47704e81736c6c414b07eb2aefe15b7b68b6c33e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8459cc5225fcb9f8e1f938f2d8251f704dd87cef1367359daf504c95b06258ae0e7b6cbb7132a198f145b3d972d958871c5fbfef62db564e1342abeda448caba
|
7
|
+
data.tar.gz: d8a9e979641a5d1ec307e73cdff29fdbd0ebfc70cec05662c95188e1685239e0912557c866ec05c3fe0570faa6139b25f7db9ce67ed4beb2c7bbc93ba4c7f6ee
|
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "capistrano_node_recipes"
|
8
|
-
s.version = "1.2.
|
8
|
+
s.version = "1.2.14"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["James Smith", "Alex Dubovskoy"]
|
@@ -76,20 +76,20 @@ EOD
|
|
76
76
|
run "ln -s #{shared_path}/node_modules #{release_path}/node_modules"
|
77
77
|
end
|
78
78
|
|
79
|
-
task :check_upstart_config do
|
80
|
-
|
81
|
-
end
|
79
|
+
# task :check_upstart_config do
|
80
|
+
# create_upstart_config if remote_file_differs?(upstart_file_path, upstart_file_contents)
|
81
|
+
# end
|
82
82
|
|
83
|
-
desc "Create upstart script for this node app"
|
84
|
-
task :create_upstart_config do
|
85
|
-
|
83
|
+
# desc "Create upstart script for this node app"
|
84
|
+
# task :create_upstart_config do
|
85
|
+
# temp_config_file_path = "#{shared_path}/#{application}.conf"
|
86
86
|
|
87
|
-
|
88
|
-
|
87
|
+
# # Generate and upload the upstart script
|
88
|
+
# put upstart_file_contents, temp_config_file_path
|
89
89
|
|
90
|
-
|
91
|
-
|
92
|
-
end
|
90
|
+
# # Copy the script into place and make executable
|
91
|
+
# sudo "cp #{temp_config_file_path} #{upstart_file_path}"
|
92
|
+
# end
|
93
93
|
|
94
94
|
desc "Start the node application"
|
95
95
|
task :start do
|