LoginSignup
2
2

More than 5 years have passed since last update.

capistrano実行時にhipchatに通知を送信する

Posted at

自作しなくていいんです。gem 'hipcaht'してるなら同梱されます。あるものを使いましょう。

Gemfile
+ gem 'hipcaht'
config/deploy.rb
+require 'hipchat/capistrano'

+set :hipchat_token,     "YOUR_HIPCHAT_TOKEN"
+set :hipchat_room_name, "YOUR_ROOM"
+set :hipchat_announce,  true # or false

参考

README.md

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2