Skip to content

streamlyzer/airbrussh

 
 

Repository files navigation

Airbrussh

Gem Version Build Status Build status Code Climate Coverage Status

Airbrussh is a replacement log formatter for SSHKit that makes your Capistrano output much easier on the eyes. Just add it to your Capfile and enjoy concise, useful log output that is easy to read.

And don't worry: airbrussh saves Capistrano's default verbose output to a separate log file just in case you still need it for troubleshooting.

Sample output

For more details on how exactly Airbrussh changes Capistrano's output and the reasoning behind it, check out the blog post: Introducing Airbrussh.

Requirements

To use Airbrussh with Capistrano, you will need Capistrano 3. Capistrano 2.x is not supported.

Airbrussh has been tested with MRI 1.9+, Capistrano 3.4.0, and SSHKit 1.6.1+. Refer to the Travis configuration for our latest test matrix. If you run into trouble using airbrussh in your environment, open an issue on GitHub.

Airbrussh's only dependency is SSHKit >= 1.6.1.

Installation

Add this line to your application's Gemfile:

gem "airbrussh", :require => false

And then execute:

$ bundle

Finally, add this line to your application's Capfile:

require "airbrussh/capistrano"

Important: explicitly setting Capistrano's :format option in your deploy.rb will override airbrussh. Remove this line if you have it:

# Remove this
set :format, :pretty

Usage

Airbrussh automatically replaces the default Capistrano log formatter, so there is nothing more you have to do. Just run cap as normal and enjoy the prettier output!

For advanced usage, refer to the these sections below:

FAQ

Airbrussh is not displaying the output of my commands! For example, I run tail in one of my capistrano tasks and airbrussh doesn't show anything. How do I fix this?

For brevity, airbrussh mutes all output (stdout and stderr) of commands by default. To show all output, add this to your deploy.rb (see also the other configuration options later in this README):

Airbrussh.configure do |config|
  config.command_output = true
end

Does airbrussh work with Capistrano 2?

No, Capistrano 3 is required. We recommend Capistrano 3.4.0 or higher.

Does airbrussh work with JRuby?

JRuby is not officially supported or tested, but may work. You must disable automatic truncation to work around a known bug in the JRuby 9.0.1.0 standard library. See #62 for more details.

Airbrussh.configure do |config|
  # Disable automatic truncation for JRuby compatibility
  config.truncate = false
end

I have a question that’s not answered here or elsewhere in the README.

Please open a GitHub issue and we’ll be happy to help!

Advanced configuration

Airbrussh can be configured by calling Airbrussh.configure in your deploy.rb file. You can do stage-specific configuration in e.g. deploy/production.rb as well. Here are the available options:

Airbrussh.configure do |config|
  # Capistrano's default, un-airbrusshed output is saved to a file to
  # facilitate debugging.
  #
  # To disable this entirely:
  # config.log_file = nil
  #
  # Default:
  config.log_file = "log/capistrano.log"

  # Airbrussh patches Rake so it can access the name of the currently executing
  # task. Set this to false if monkey patching is causing issues.
  #
  # Default:
  config.monkey_patch_rake = true

  # Ansi colors will be used in the output automatically based on whether the
  # output is a TTY, or if the SSHKIT_COLOR environment variable is set.
  #
  # To disable color always:
  # config.color = false
  #
  # Default:
  config.color = :auto

  # Output is automatically truncated to the width of the terminal window, if
  # possible. If the width of the terminal can't be determined, no truncation
  # is performed.
  #
  # To truncate to a fixed width:
  # config.truncate = 80
  #
  # Or to disable truncation entirely:
  # config.truncate = false
  #
  # Default:
  config.truncate = :auto

  # If a log_file is configured, airbrussh will output a message at startup
  # displaying the log_file location.
  #
  # To always disable this message:
  # config.banner = false
  #
  # To display an alternative message:
  # config.banner = "Hello, world!"
  #
  # Default:
  config.banner = :auto

  # You can control whether airbrussh shows the output of SSH commands. For
  # brevity, the output is hidden by default.
  #
  # Display stdout of SSH commands. Stderr is not displayed.
  # config.command_output = :stdout
  #
  # Display stderr of SSH commands. Stdout is not displayed.
  # config.command_output = :stderr
  #
  # Display all SSH command output.
  # config.command_output = [:stdout, :stderr]
  # or
  # config.command_output = true
  #
  # Default (all output suppressed):
  config.command_output = false
end

Usage outside of Capistrano

If you are using SSHKit directly, you can use Airbrussh without the Capistrano magic:

require "airbrussh"
SSHKit.config.output = Airbrussh::Formatter.new($stdout)

When Capistrano is not present, Airbrussh uses a slightly different default configuration:

Airbrussh.configure do |config|
  config.log_file = nil
  config.monkey_patch_rake = false
  config.color = :auto
  config.truncate = :auto
  config.banner = :auto
  config.command_output = false
end

History

Airbrussh started life as custom logging code within the capistrano-mb collection of opinionated Capistrano recipes. In February 2015, the logging code was refactored into a standalone gem with its own configuration and documentation, and renamed airbrussh. Now anyone can using SSHKit or Capistrano can safely plug it into their projects!

Roadmap

Airbrussh will most likely be integrated as the default formatter in a future release of SSHKit or Capistrano. If you have any suggestions for how to make this migration a smooth one, or if you have other ideas for improvements to Airbrussh, please add your comment to the discussion in GitHub issue #39.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release to create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Airbrussh is designed to work against multiple versions of SSHKit and Ruby. In order to test this, we use the environment variable sshkit in order to run the tests against a specific version. The combinations of sshkit and ruby we support are specified in .travis.yml. To test all the versions locally, there is a test_all.rb bin file. This installs the gems and runs the tests for each sshkit version in .travis.yml. Note: this will update your Gemfile.lock as each SSHKit gem version is installed. The gem version is restored to the default when the script exits.

Contributing

Contributions are welcome! Read CONTRIBUTING.md to get started.

About

Airbrussh pretties up your SSHKit and Capistrano output

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 99.8%
  • Shell 0.2%