module Blackbeard::ConfigurationMethods

Public Class Methods

included(base) click to toggle source
# File lib/blackbeard/configuration_methods.rb, line 3
def self.included(base)
  base.extend(self)
end

Public Instance Methods

config() click to toggle source
# File lib/blackbeard/configuration_methods.rb, line 7
def config
  Blackbeard.config
end
db() click to toggle source
# File lib/blackbeard/configuration_methods.rb, line 11
def db
  config.db
end
guest_method() click to toggle source
# File lib/blackbeard/configuration_methods.rb, line 19
def guest_method
  config.guest_method
end
tz() click to toggle source
# File lib/blackbeard/configuration_methods.rb, line 15
def tz
  config.tz
end