├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── capistrano-pm2.gemspec └── lib ├── capistrano-pm2.rb └── capistrano ├── pm2.rb └── tasks └── pm2.rake /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-workflow/capistrano-pm2/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-workflow/capistrano-pm2/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-workflow/capistrano-pm2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-workflow/capistrano-pm2/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /capistrano-pm2.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-workflow/capistrano-pm2/HEAD/capistrano-pm2.gemspec -------------------------------------------------------------------------------- /lib/capistrano-pm2.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/capistrano/pm2.rb: -------------------------------------------------------------------------------- 1 | load File.expand_path('../tasks/pm2.rake', __FILE__) 2 | -------------------------------------------------------------------------------- /lib/capistrano/tasks/pm2.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creative-workflow/capistrano-pm2/HEAD/lib/capistrano/tasks/pm2.rake --------------------------------------------------------------------------------