Skip to content

Instantly share code, notes, and snippets.

@jtadeulopes
Created June 13, 2009 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtadeulopes/129354 to your computer and use it in GitHub Desktop.
Save jtadeulopes/129354 to your computer and use it in GitHub Desktop.
namespace :db do
desc "Popula base de dados"
task :populate => :environment do
require 'populator'
Category.populate 30 do |category|
category.name = Populator.words(1..3).titleize
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment