aboutsummaryrefslogtreecommitdiffstats
path: root/spec/dummy/db/seeds.rb
blob: a158e5292a49e9b48e9203b6e553a0e04f62f566 (plain) (blame)
1
2
3
4
5
# Refinery seeds
Dir[Rails.root.join('db', 'seeds', '*.rb').to_s].each do |file|
  puts "Loading db/seeds/#{file.split(File::SEPARATOR).last}"
  load(file)
end