├── .gitignore ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── capistrano3-monit.gemspec └── lib ├── capistrano ├── monit.rb └── tasks │ └── monit.rake └── capistrano3-monit.rb /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | *.gem 3 | /vagrant 4 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naps62/capistrano3-monit/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naps62/capistrano3-monit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naps62/capistrano3-monit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /capistrano3-monit.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naps62/capistrano3-monit/HEAD/capistrano3-monit.gemspec -------------------------------------------------------------------------------- /lib/capistrano/monit.rb: -------------------------------------------------------------------------------- 1 | load File.expand_path('../tasks/monit.rake', __FILE__) 2 | 3 | -------------------------------------------------------------------------------- /lib/capistrano/tasks/monit.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naps62/capistrano3-monit/HEAD/lib/capistrano/tasks/monit.rake -------------------------------------------------------------------------------- /lib/capistrano3-monit.rb: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------