Capistrano::Taillog
Note: this plugin works only with Capistrano 3.
About
Capistrano Taillog makes tailing logs easier. run cap <stage> log:tail to tail logs from remote servers.
Installation
Put the following in your application's Gemfile:
group :development do
gem 'capistrano', '~> 3.2.0'
gem 'capistrano-taillog'
end
Then:
$ bundle install
Usage
Put the following in your application's Capfile:
require 'capistrano/taillog'
Then:
cap <stage> logs:tail
Configurations
Please see: defaults.rb
Contributing
- Fork it ( https://github.com/[my-github-username]/capistrano-taillog/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request