class Slack::Incoming::Webhooks

Constants

VERSION

Attributes

webhook_url[RW]

Public Class Methods

new(webhook_url, options={}) click to toggle source
# File lib/slack/incoming/webhooks.rb, line 15
def initialize(webhook_url, options={})
  @webhook_url = webhook_url
  options.each { |key, val| send("#{key}=", val) }
end