Hello, The rakefile I have does not support a function that a newer rakefile supports. Is there a script to update the rakefile? -- Thank you, Brian Takita http://freeopinion.org _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
On Oct 21, 2005, at 5:52 PM, Brian Takita wrote:> Hello, > > The rakefile I have does not support a function that a newer > rakefile supports. Is there a script to update the rakefile?Only "rails .", which will overwrite the Rakefile if you let it. If you have custom tasks you''ve added, you can manually copy those to a file (something like "custom.rake", but it must end in ".rake") in lib/tasks before clobbering the Rakefile. - Jamis