Skip to content

Instantly share code, notes, and snippets.

@the-teacher
Created June 7, 2013 01:30
Show Gist options
  • Save the-teacher/5726487 to your computer and use it in GitHub Desktop.
Save the-teacher/5726487 to your computer and use it in GitHub Desktop.
multiple seeds This will allow you to do rake db:seed:x where “x” is a file in the db/seeds directory:
namespace :db do
namespace :seed do
Dir[File.join(Rails.root, 'db', 'seeds', '*.rb')].each do |seed_file|
task_name = File.basename(seed_file, '.rb').intern
desc "Load the seed data from db/seeds/#{task_name}.rb"
task task_name => :environment do
load(seed_file) if File.exist?(seed_file)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment