Class: JewelSeed::Loader

Inherits:
Object
  • Object
show all
Defined in:
lib/jewel_seed/loader.rb

Class Method Summary collapse

Class Method Details

.loadObject



4
5
6
7
8
9
# File 'lib/jewel_seed/loader.rb', line 4

def load
  SeedMigrationTable.table_names.each do |t|
    path = "#{SEED_PATH}/#{t}.rb"
    require(File.expand_path(path))
  end
end