I have a seed script called load.rb in the db directory of an application. I just got this app from a client so not sure how to run this script. I get a name error on all of the Model.create(...) statements. I guess this is because the Rails environment is not loaded.
There is no indication that this load script was run via a rake task because I see no custom rake tasks in the app. Is this a "Rails thing"? ...in other words, is there a command I am not aware of that will load the app context and execute load.rb in the db directory?
If not, how can load the app context in the file so that I can simply type "ruby load.rb" to load the database?
The file is literally just a bunch of create statements:
Quiz.create(:name=> "1")
Quiz.create(:name=> "2")
Quiz.create(:name=> "3")
Quiz.create(:name=> "4")
thanks