Announce Mina deployments to a slack channel.
Add this line to your application's Gemfile:
gem 'mina-slack'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mina-slack
Include the recipe in your deploy.rb
# config/deploy.rb
require 'mina/slack'
You'll need to setup your slack details with an API key, room and subdomain. You can add these as ENV variables or in the config/deploy.rb
# required
set :slack_url, "https://hooks.slack.com/services/<YOUR-STRING1>/<YOUR-STRING2>" # comes from inbound webhook integration
set :slack_room, "#general" # the room to send the message to
# optional
set :slack_application, "Application Name" # override Capistrano `application`
set :slack_username, "Deploy Bot" # displayed as name of message sender
set :slack_emoji, ":cloud:" # will be used as the avatar for the message
Or use the ENV variables:
# required
ENV['SLACK_URL'] = ''
ENV['SLACK_ROOM'] = ''
# optional
ENV['SLACK_APPLICATION'] = ''
ENV['SLACK_USERNAME'] = ''
ENV['SLACK_EMOJI'] = ''
- Fork it ( http://github.com//mina-slack/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request