Rake v0.7.3 Release Notes

    • ➕ Added the +init+ and +top_level+ methods to make the creation of custom Rake applications a bit easier. E.g.

      gem 'rake', ">= 0.7.3" require 'rake'

      Rake.application.init('myrake')

      task :default do something_interesting end

      Rake.application.top_level