How a rake task is called inside a buildr project from buildr coomand line ?
In the buildr buildfile must be defined
require "rake"
and the task definiton is
define "doSomething" do
puts 'task doSomething called'
end
=> This won't work and the solution is ?
