class Flextures::DumpFilter

Constants

FACTORIES

FactoryDumpFilter data

Public Class Methods

[](table_name) click to toggle source
# File lib/flextures/flextures_factory.rb, line 49
def self.[](table_name); self.get(table_name); end
define(table_name, hash) click to toggle source

set FactoryFilter @params table_name @params options @params block @return Flextures::Factory

# File lib/flextures/flextures_factory.rb, line 41
def self.define(table_name, hash)
  FACTORIES[table_name.to_sym]=hash
end
get(table_name) click to toggle source

get FactoryFilter

# File lib/flextures/flextures_factory.rb, line 46
def self.get(table_name)
  FACTORIES[table_name.to_sym]
end