class PushBot::Config

Attributes

id[RW]
secret[RW]

Public Class Methods

config() click to toggle source
# File lib/push_bot/config.rb, line 5
def self.config
  @config ||= new
end
configure() { |config| ... } click to toggle source
# File lib/push_bot/config.rb, line 9
def self.configure
  yield(config) if block_given?

  config
end