capistrano_node_recipes 1.2.13

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 86bee165917e6e78af17a3bb1bc2a879c318f5d6
4
+ data.tar.gz: ed645e5f040aee45afc24dcaf93f2ab292ff30c5
5
+ SHA512:
6
+ metadata.gz: d01b27a56eda74fea7c8fb15aa87c78d8ca022346fb89dde6cda1fc4738025e15846694d8da00eeb16973c0a0ec4848688ce55d5ce338c841363cbdf3818932a
7
+ data.tar.gz: e81bd871802743bf4f7134a2c6d9e4d9221a1896daaa84e03f02a418265e5889bd9beeceb4853ce04060adeab95ebb06b6bd278d3dd7200020cc3909add66c00
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "railsless-deploy", ">= 1.1.0"
4
+ gem "multi_json", "~> 1.3.6"
5
+
6
+ group :development do
7
+ gem "shoulda", ">= 0"
8
+ gem "rdoc", "~> 3.12"
9
+ gem "bundler", "~> 1.1"
10
+ gem "jeweler", "~> 1.8.3"
11
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,73 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ activesupport (4.0.0)
5
+ i18n (~> 0.6, >= 0.6.4)
6
+ minitest (~> 4.2)
7
+ multi_json (~> 1.3)
8
+ thread_safe (~> 0.1)
9
+ tzinfo (~> 0.3.37)
10
+ atomic (1.1.10)
11
+ builder (3.2.2)
12
+ faraday (0.8.7)
13
+ multipart-post (~> 1.1)
14
+ git (1.2.5)
15
+ github_api (0.8.1)
16
+ faraday (~> 0.8.1)
17
+ hashie (~> 1.2.0)
18
+ multi_json (~> 1.3)
19
+ nokogiri (~> 1.5.2)
20
+ oauth2
21
+ hashie (1.2.0)
22
+ highline (1.6.19)
23
+ httpauth (0.2.0)
24
+ i18n (0.6.4)
25
+ jeweler (1.8.5)
26
+ builder
27
+ bundler (~> 1.0)
28
+ git (>= 1.2.5)
29
+ github_api (>= 0.8.1)
30
+ highline (>= 1.6.15)
31
+ nokogiri (= 1.5.10)
32
+ rake
33
+ rdoc
34
+ json (1.8.0)
35
+ jwt (0.1.6)
36
+ multi_json (>= 1.0)
37
+ minitest (4.7.5)
38
+ multi_json (1.3.7)
39
+ multi_xml (0.5.4)
40
+ multipart-post (1.2.0)
41
+ nokogiri (1.5.10)
42
+ oauth2 (0.9.2)
43
+ faraday (~> 0.8)
44
+ httpauth (~> 0.2)
45
+ jwt (~> 0.1.4)
46
+ multi_json (~> 1.0)
47
+ multi_xml (~> 0.5)
48
+ rack (~> 1.2)
49
+ rack (1.5.2)
50
+ railsless-deploy (1.1.2)
51
+ rake (10.1.0)
52
+ rdoc (3.12.2)
53
+ json (~> 1.4)
54
+ shoulda (3.5.0)
55
+ shoulda-context (~> 1.0, >= 1.0.1)
56
+ shoulda-matchers (>= 1.4.1, < 3.0)
57
+ shoulda-context (1.1.4)
58
+ shoulda-matchers (2.2.0)
59
+ activesupport (>= 3.0.0)
60
+ thread_safe (0.1.0)
61
+ atomic
62
+ tzinfo (0.3.37)
63
+
64
+ PLATFORMS
65
+ ruby
66
+
67
+ DEPENDENCIES
68
+ bundler (~> 1.1)
69
+ jeweler (~> 1.8.3)
70
+ multi_json (~> 1.3.6)
71
+ railsless-deploy (>= 1.1.0)
72
+ rdoc (~> 3.12)
73
+ shoulda
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 James Smith
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,87 @@
1
+ capistrano_node_recipes
2
+ ======================
3
+
4
+ Capistrano recipe for deploying node.js apps.
5
+
6
+ Features
7
+ --------
8
+ - Provides `cap deploy` functionality for your node app
9
+ - Installs node packages (`npm install`) during deploys, using a shared folder for speed
10
+ - Automatically creates upstart scripts for your node apps
11
+ - Provides tasks for starting (`cap node:start`) and stopping (`cap node:stop`) your node app
12
+
13
+
14
+ Usage
15
+ -----
16
+
17
+ First install the gem:
18
+
19
+ sudo gem install capistrano-node-deploy
20
+
21
+ or add it to your `Gemfile` if you have one:
22
+
23
+ gem "capistrano-node-deploy"
24
+
25
+ Now add the following to your `Capfile`
26
+
27
+ require "capistrano/node-deploy"
28
+
29
+
30
+ Full Capfile Example
31
+ --------------------
32
+
33
+ ```ruby
34
+ require "capistrano/node-deploy"
35
+
36
+ set :application, "my-node-app-name"
37
+ set :repository, "git@github.com:/loopj/my-node-app-name"
38
+ set :user, "deploy"
39
+ set :scm, :git
40
+ set :deploy_to, "/var/apps/my-app-folder"
41
+
42
+ role :app, "myserver.com"
43
+ ```
44
+
45
+
46
+ Overriding Default Settings
47
+ ---------------------------
48
+
49
+ ```ruby
50
+ # Set app command to run (defaults to index.js, or your `main` file from `package.json`)
51
+ set :app_command, "my_server.coffee"
52
+
53
+ # Set additional environment variables for the app
54
+ set :app_environment, "PORT=8080"
55
+
56
+ # Set node binary to run (defaults to /usr/bin/node)
57
+ set :node_binary, "/usr/bin/coffee"
58
+
59
+ # Set node environment (defaults to production)
60
+ set :node_env, "staging"
61
+
62
+ # Set the user to run node as (defaults to deploy)
63
+ set :node_user, "james"
64
+
65
+ # Set the name of the upstart command (defaults to #{application}-#{node_env})
66
+ set :upstart_job_name, "myserver"
67
+ ```
68
+
69
+
70
+ Contributing to capistrano-node-deploy
71
+ --------------------------------------
72
+
73
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
74
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
75
+ * Fork the project.
76
+ * Start a feature/bugfix branch.
77
+ * Commit and push until you are happy with your contribution.
78
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
79
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
80
+
81
+
82
+ Copyright
83
+ ---------
84
+
85
+ Copyright (c) 2012 James Smith. See LICENSE.txt for
86
+ further details.
87
+
data/Rakefile ADDED
@@ -0,0 +1,45 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "capistrano-node-deploy"
18
+ gem.homepage = "http://github.com/loopj/capistrano-node-deploy"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Capistrano recipes for deploying node apps}
21
+ gem.description = %Q{Capistrano recipes for deploying node apps}
22
+ gem.email = "james@loopj.com"
23
+ gem.authors = ["James Smith"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rake/testtask'
29
+ Rake::TestTask.new(:test) do |test|
30
+ test.libs << 'lib' << 'test'
31
+ test.pattern = 'test/**/test_*.rb'
32
+ test.verbose = true
33
+ end
34
+
35
+ task :default => :test
36
+
37
+ require 'rdoc/task'
38
+ Rake::RDocTask.new do |rdoc|
39
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
40
+
41
+ rdoc.rdoc_dir = 'rdoc'
42
+ rdoc.title = "capistrano-node-deploy #{version}"
43
+ rdoc.rdoc_files.include('README*')
44
+ rdoc.rdoc_files.include('lib/**/*.rb')
45
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.2.13
@@ -0,0 +1,65 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "capistrano_node_recipes"
8
+ s.version = "1.2.13"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["James Smith", "Alex Dubovskoy"]
12
+ s.date = "2014-01-17"
13
+ s.description = "Capistrano recipes for deploying node apps"
14
+ s.email = "dubovskoy.a@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "Gemfile",
22
+ "Gemfile.lock",
23
+ "LICENSE.txt",
24
+ "README.md",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "capistrano_node_recipes.gemspec",
28
+ "lib/capistrano_node_recipes.rb",
29
+ "lib/capistrano/node-deploy.rb",
30
+ "test/helper.rb"
31
+ ]
32
+ s.homepage = "https://github.com/dubadub/capistrano_node_recipes"
33
+ s.licenses = ["MIT"]
34
+ s.require_paths = ["lib"]
35
+ s.rubygems_version = "2.0.14"
36
+ s.summary = "Capistrano recipes for deploying node apps"
37
+
38
+ if s.respond_to? :specification_version then
39
+ s.specification_version = 4
40
+
41
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
42
+ s.add_runtime_dependency(%q<railsless-deploy>, [">= 1.1.0"])
43
+ s.add_runtime_dependency(%q<multi_json>, ["~> 1.3.6"])
44
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
45
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
46
+ s.add_development_dependency(%q<bundler>, ["~> 1.1"])
47
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
48
+ else
49
+ s.add_dependency(%q<railsless-deploy>, [">= 1.1.0"])
50
+ s.add_dependency(%q<multi_json>, ["~> 1.3.6"])
51
+ s.add_dependency(%q<shoulda>, [">= 0"])
52
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
53
+ s.add_dependency(%q<bundler>, ["~> 1.1"])
54
+ s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
55
+ end
56
+ else
57
+ s.add_dependency(%q<railsless-deploy>, [">= 1.1.0"])
58
+ s.add_dependency(%q<multi_json>, ["~> 1.3.6"])
59
+ s.add_dependency(%q<shoulda>, [">= 0"])
60
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
61
+ s.add_dependency(%q<bundler>, ["~> 1.1"])
62
+ s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
63
+ end
64
+ end
65
+
@@ -0,0 +1,118 @@
1
+ require "digest/md5"
2
+ require "railsless-deploy"
3
+ require "multi_json"
4
+
5
+ def remote_file_exists?(full_path)
6
+ results = []
7
+ invoke_command("if [ -e '#{full_path}' ]; then echo -n 'true'; fi") do |ch, stream, out|
8
+ results << (out == 'true')
9
+ end
10
+ results == [true]
11
+ end
12
+
13
+ def remote_file_content_same_as?(full_path, content)
14
+ results = []
15
+ invoke_command("md5sum #{full_path} | awk '{ print $1 }'") do |ch, stream, out|
16
+ results << (out == Digest::MD5.hexdigest(content))
17
+ end
18
+ results == [true]
19
+ end
20
+
21
+ def remote_file_differs?(full_path, content)
22
+ exists = remote_file_exists?(full_path)
23
+ !exists || exists && !remote_file_content_same_as?(full_path, content)
24
+ end
25
+
26
+ Capistrano::Configuration.instance(:must_exist).load do |configuration|
27
+ default_run_options[:pty] = true
28
+ before "deploy", "deploy:create_release_dir"
29
+ before "deploy", "node:check_upstart_config"
30
+ before "deploy:create_symlink", "node:install_packages"
31
+ after "deploy:update", "node:restart"
32
+ after "deploy:rollback", "node:restart"
33
+
34
+ package_json = MultiJson.load(File.open("package.json").read) rescue {}
35
+
36
+ set :application, package_json["name"] unless defined? application
37
+ set :app_command, package_json["main"] || "index.js" unless defined? app_command
38
+ set :app_environment, "" unless defined? app_environment
39
+
40
+ set :node_binary, "/usr/bin/node" unless defined? node_binary
41
+ set :npm_binary, "/usr/bin/npm" unless defined? npm_binary
42
+ set :node_env, "production" unless defined? node_env
43
+ set :node_user, "deploy" unless defined? node_user
44
+
45
+ set :stdout_log_path, lambda { "#{shared_path}/log/#{node_env}.out.log" }
46
+ set :stderr_log_path, lambda { "#{shared_path}/log/#{node_env}.err.log" }
47
+
48
+ set :upstart_job_name, lambda { "#{application}-#{node_env}" } unless defined? upstart_job_name
49
+ set :upstart_file_path, lambda { "/etc/init/#{upstart_job_name}.conf" } unless defined? upstart_file_path
50
+ _cset(:upstart_file_contents) {
51
+ <<EOD
52
+ #!upstart
53
+ description "#{application} node app"
54
+ author "capistrano"
55
+
56
+ start on runlevel [2345]
57
+ stop on shutdown
58
+
59
+ respawn
60
+ respawn limit 99 5
61
+
62
+ script
63
+ cd #{current_path} && exec sudo -u #{node_user} NODE_ENV=#{node_env} #{app_environment} #{node_binary} #{current_path}/#{app_command} 2>> #{stderr_log_path} 1>> #{stdout_log_path}
64
+ end script
65
+ EOD
66
+ }
67
+
68
+
69
+ namespace :node do
70
+ desc "Check required packages and install if packages are not installed"
71
+ task :install_packages do
72
+ run "mkdir -p #{shared_path}/node_modules"
73
+ run "cp #{release_path}/package.json #{shared_path}"
74
+ run "cp #{release_path}/npm-shrinkwrap.json #{shared_path}" if remote_file_exists?("#{release_path}/npm-shrinkwrap.json")
75
+ run "cd #{shared_path} && #{npm_binary} install --loglevel warn"
76
+ run "ln -s #{shared_path}/node_modules #{release_path}/node_modules"
77
+ end
78
+
79
+ task :check_upstart_config do
80
+ create_upstart_config if remote_file_differs?(upstart_file_path, upstart_file_contents)
81
+ end
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"
86
+
87
+ # Generate and upload the upstart script
88
+ put upstart_file_contents, temp_config_file_path
89
+
90
+ # Copy the script into place and make executable
91
+ sudo "cp #{temp_config_file_path} #{upstart_file_path}"
92
+ end
93
+
94
+ desc "Start the node application"
95
+ task :start do
96
+ sudo "start #{upstart_job_name}"
97
+ end
98
+
99
+ desc "Stop the node application"
100
+ task :stop do
101
+ sudo "stop #{upstart_job_name}"
102
+ end
103
+
104
+ desc "Restart the node application"
105
+ task :restart do
106
+ sudo "stop #{upstart_job_name}; true"
107
+ sudo "start #{upstart_job_name}"
108
+ end
109
+ end
110
+
111
+ namespace :deploy do
112
+ task :create_release_dir, :except => {:no_release => true} do
113
+ mkdir_releases = "mkdir -p #{fetch :releases_path}"
114
+ mkdir_commands = ["log", "pids"].map {|dir| "mkdir -p #{shared_path}/#{dir}"}
115
+ run mkdir_commands.unshift(mkdir_releases).join(" && ")
116
+ end
117
+ end
118
+ end
@@ -0,0 +1 @@
1
+ # Nothing here, see lib/capistrano/node-deploy.rb
data/test/helper.rb ADDED
@@ -0,0 +1,18 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+ require 'shoulda'
12
+
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
+ require 'capistrano_node_recipes'
16
+
17
+ class Test::Unit::TestCase
18
+ end
metadata ADDED
@@ -0,0 +1,141 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: capistrano_node_recipes
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.13
5
+ platform: ruby
6
+ authors:
7
+ - James Smith
8
+ - Alex Dubovskoy
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-01-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: railsless-deploy
16
+ requirement: !ruby/object:Gem::Requirement
17
+ requirements:
18
+ - - '>='
19
+ - !ruby/object:Gem::Version
20
+ version: 1.1.0
21
+ type: :runtime
22
+ prerelease: false
23
+ version_requirements: !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - '>='
26
+ - !ruby/object:Gem::Version
27
+ version: 1.1.0
28
+ - !ruby/object:Gem::Dependency
29
+ name: multi_json
30
+ requirement: !ruby/object:Gem::Requirement
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 1.3.6
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ~>
40
+ - !ruby/object:Gem::Version
41
+ version: 1.3.6
42
+ - !ruby/object:Gem::Dependency
43
+ name: shoulda
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - '>='
47
+ - !ruby/object:Gem::Version
48
+ version: '0'
49
+ type: :development
50
+ prerelease: false
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: rdoc
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ version: '3.12'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: '3.12'
70
+ - !ruby/object:Gem::Dependency
71
+ name: bundler
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: '1.1'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ~>
82
+ - !ruby/object:Gem::Version
83
+ version: '1.1'
84
+ - !ruby/object:Gem::Dependency
85
+ name: jeweler
86
+ requirement: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ~>
89
+ - !ruby/object:Gem::Version
90
+ version: 1.8.3
91
+ type: :development
92
+ prerelease: false
93
+ version_requirements: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - ~>
96
+ - !ruby/object:Gem::Version
97
+ version: 1.8.3
98
+ description: Capistrano recipes for deploying node apps
99
+ email: dubovskoy.a@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files:
103
+ - LICENSE.txt
104
+ - README.md
105
+ files:
106
+ - .document
107
+ - Gemfile
108
+ - Gemfile.lock
109
+ - LICENSE.txt
110
+ - README.md
111
+ - Rakefile
112
+ - VERSION
113
+ - capistrano_node_recipes.gemspec
114
+ - lib/capistrano_node_recipes.rb
115
+ - lib/capistrano/node-deploy.rb
116
+ - test/helper.rb
117
+ homepage: https://github.com/dubadub/capistrano_node_recipes
118
+ licenses:
119
+ - MIT
120
+ metadata: {}
121
+ post_install_message:
122
+ rdoc_options: []
123
+ require_paths:
124
+ - lib
125
+ required_ruby_version: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - '>='
128
+ - !ruby/object:Gem::Version
129
+ version: '0'
130
+ required_rubygems_version: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - '>='
133
+ - !ruby/object:Gem::Version
134
+ version: '0'
135
+ requirements: []
136
+ rubyforge_project:
137
+ rubygems_version: 2.0.14
138
+ signing_key:
139
+ specification_version: 4
140
+ summary: Capistrano recipes for deploying node apps
141
+ test_files: []