---------rakefile------------- require 'csv' require 'rake' task :purchaseAlcohol do puts "Purchased Vodka" end
task :mixDrink do puts "Mixed Fuzzy Navel" end task :getSmashed do puts "Dood, everthing’s blurry, can I halff noth’r drinnnk?" end -----------end-------------------- when I run rake task using any of the commands rake purchaseAlcohol rake mixDrink rake getSmashed i am getting error as rake aborted! Don't know how to build task 'taskname' Can anyone please tell how to get rid of it. -- Posted via http://www.ruby-forum.com/.
-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

