Skip to content

Instantly share code, notes, and snippets.

@nico01f
Last active October 12, 2016 20:51
Show Gist options
  • Save nico01f/e2dfc8aae7da325ff9dc89d1a2625a80 to your computer and use it in GitHub Desktop.
Save nico01f/e2dfc8aae7da325ff9dc89d1a2625a80 to your computer and use it in GitHub Desktop.
Notify to hipchat from capistrano
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
}
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