IdobataHook
A client for Idobata's Generic Hook
Installation
Add this line to your application's Gemfile:
gem 'idobata_hook'
And then execute:
$ bundle
Or install it yourself as:
$ gem install idobata_hook
Usage
client = IdobataHook::Client.new("https://idobata.io/hook/generic/***")
client.send('hello, world')
client.send("<h1>hi</h1>", format: :html)
client.send('Look at this', image_path: '/path/to/image.png')
client.send([
{'label-success' => 'build passing!' }, #=> <span class="label label-success">build passing!</span>
{ badge: '123' }, #=> <span class="badge">123</span>
{ emoji: 'smile'}, #=> <img class="emoji" alt=":smile:" src="/images/emoji/smile.png" height="20" width="20">
"Foooo!", #=> Foooo!
{ fa: 'camera-retro' }, #=> <i class="fa fa-camera-retro"></i>
])
Contributing
- Fork it ( https://github.com/fukayatsu/idobata_hook/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