module Canzea

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/canzea/config.rb, line 30
def self.config
  @config
end
configure(opts = {}) click to toggle source

Configure through hash

# File lib/canzea/config.rb, line 26
def self.configure(opts = {})
  opts.each {|k,v| @config[k.to_sym] = v if @valid_config_keys.include? k.to_sym}
end