module Seko

Constants

VERSION

Public Class Methods

config() click to toggle source
# File lib/seko.rb, line 27
def self.config
  @config
end
configure(opts = {}) click to toggle source
# File lib/seko.rb, line 23
def self.configure(opts = {})
  opts.each { |k,v| @config[k.to_sym] = v if @config.keys.include? k.to_sym }
end