Part of my seeds.rb loads a lot of data into the database. I want to be able to selectively load this data. E.g.
seeds.rb
$ rake db:seed
o
Rake arguments are painful to pass around, unfortunately (and db:seed doesn't pass its arguments through, regardless).
Your best bet is to use environment variables to pass your extra args through:
rake db:seed minimal=yes
and
unless ENV["minimal"] # do stuff
etc