Added color definition file at config/cap_colors.rb

This commit is contained in:
Tray Torrance 2011-11-15 09:06:15 -08:00
parent bbc165137f
commit c46c07f648

11
config/cap_colors.rb Normal file
View file

@ -0,0 +1,11 @@
require 'capistrano_colors'
capistrano_color_matchers = [
# Full docs at https://github.com/stjernstrom/capistrano_colors/
# Any priority above 0 will override capistrano_colors' defaults if needed
{ :match => /^Deploying branch/, :color => :yellow, :prio => 20 },
]
capistrano_color_matchers.each do |matcher|
Capistrano::Logger::add_color_matcher( matcher )
end