Method: DBGeni::Config#initialize
- Defined in:
- lib/dbgeni/config.rb
#initialize ⇒ Config
Returns a new instance of Config.
41 42 43 44 45 46 47 48 49 50 |
# File 'lib/dbgeni/config.rb', line 41 def initialize @migration_directory = 'migrations' @dml_directory = 'dml' @code_dir = 'code' @plugin_dir = nil @db_type = 'sqlite' @db_table = 'dbgeni_migrations' @base_dir = '.' @environments = Hash.new end |