Last active
October 12, 2016 20:51
-
-
Save nico01f/e2dfc8aae7da325ff9dc89d1a2625a80 to your computer and use it in GitHub Desktop.
Notify to hipchat from capistrano
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set :hipchat_token, "Hx29Lcmtxo......9a00SaE.....1jk" | |
set :hipchat_room_name, "Sistemas" | |
set :hipchat_enabled, true # set to false to prevent any messages from being sent | |
set :hipchat_announce, false # notify users | |
set :hipchat_color, 'yellow' #normal message color | |
set :hipchat_success_color, 'green' #finished deployment message color | |
set :hipchat_failed_color, 'red' #cancelled deployment message color | |
set :hipchat_options, { | |
:api_version => "v2" # Set "v2" to send messages with API v2 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'hipchat', '~> 1.5', '>= 1.5.3' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment