TODO: Write a gem description
Add this line to your application's Gemfile:
gem 'flowdock_notification'
And then execute:
$ bundle
Or install it yourself as:
$ gem install flowdock_notification
To send notification to your flowdock group, you will need email-address of flowdock group. You can get it from flow-settings of your group.
(Rails) Create config/initializers/flowdock_notification.rb
FlowdockNotification.configure do |config|
config.notification_from = "[email protected]"
config.notification_to = "[email protected]"
end
Alternatively, set environment variables before loading the gem:
- Fork it ( https://github.com/[my-github-username]/flowdock_notification/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 a new Pull Request
- Swati Jadhav (@swatijadhav)