From: Gordon Thiesfeld Date: 2008-01-18T21:38:48+09:00 Subject: Re: Needing help using Rake from within a Ruby program On Jan 17, 2008 10:53 PM, Bryan Richardson wrote: > Gordon, > > How do I specify the Rakefile to use? > > Thanks! -- BTR > I was a little off. I don't think you can use require, but you can use load. require 'rubygems' require 'rake' load 'path/to/Rakefile' rake = Rake::Application.new rake['spec'].invoke