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