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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86bee165917e6e78af17a3bb1bc2a879c318f5d6
4
- data.tar.gz: ed645e5f040aee45afc24dcaf93f2ab292ff30c5
3
+ metadata.gz: 27b854b7ef8249b764283c54ae28252389ba24a1
4
+ data.tar.gz: 47704e81736c6c414b07eb2aefe15b7b68b6c33e
5
5
  SHA512:
6
- metadata.gz: d01b27a56eda74fea7c8fb15aa87c78d8ca022346fb89dde6cda1fc4738025e15846694d8da00eeb16973c0a0ec4848688ce55d5ce338c841363cbdf3818932a
7
- data.tar.gz: e81bd871802743bf4f7134a2c6d9e4d9221a1896daaa84e03f02a418265e5889bd9beeceb4853ce04060adeab95ebb06b6bd278d3dd7200020cc3909add66c00
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.13"
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
- create_upstart_config if remote_file_differs?(upstart_file_path, upstart_file_contents)
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
- temp_config_file_path = "#{shared_path}/#{application}.conf"
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
- # Generate and upload the upstart script
88
- put upstart_file_contents, temp_config_file_path
87
+ # # Generate and upload the upstart script
88
+ # put upstart_file_contents, temp_config_file_path
89
89
 
90
- # Copy the script into place and make executable
91
- sudo "cp #{temp_config_file_path} #{upstart_file_path}"
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_node_recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.13
4
+ version: 1.2.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Smith