module Slackathon

Constants

VERSION

Public Class Methods

queue() click to toggle source
# File lib/slackathon.rb, line 13
def self.queue
  @queue ||= "slack"
end
queue=(queue) click to toggle source
# File lib/slackathon.rb, line 17
def self.queue=(queue)
  @queue = queue
end
verification_token() click to toggle source
# File lib/slackathon.rb, line 5
def self.verification_token
  @verification_token ||= ENV["SLACK_VERIFICATION_TOKEN"]
end
verification_token=(token) click to toggle source
# File lib/slackathon.rb, line 9
def self.verification_token=(token)
  @verification_token = token
end