module Feste

Constants

VERSION

Public Class Methods

configure() { |Config| ... } click to toggle source
# File lib/feste.rb, line 28
def self.configure
  begin
    yield(Config)
  rescue NoConfigurationError => e
    puts "FESTE CONFIGURATION WARNING: #{e}"
  end
end
table_name_prefix() click to toggle source
# File lib/feste.rb, line 16
def self.table_name_prefix
  "feste_"
end