JiveWebhooks is a mountable engine for Rails that enables Jive Webhook functionality.
0.0.1
- Initial commit - doesn't do anything meaninful yet
Add this line to your application's Gemfile:
gem 'jive_webhooks'
then add and run the ActiveRecord migrations.
bundle exec rails generate jive:add_on:active_record
bundle exec rake db:migrate
In your routes.rb file, mount the rails engine to enable add-on support.
Rails.application.routes.draw do
mount JiveWebhooks::Engine => "/special_path_for_api"
end
See /spec/dummy/extension_src for the example add-on extension that is uploaded. You'll need to change the endpoints!
For whitelisting and blacklisting specific
Bug reports and pull requests are welcome on GitHub at https://github.com/butchmarshall/jive_webhooks.
The gem is available as open source under the terms of the MIT License.