method

rakefile

rails latest stable - Class: Rails::TemplateRunner

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v2.3.8) is shown here.

rakefile(filename, data = nil, &block)
public

Create a new Rakefile with the provided code (either in a block or a string).

Examples

  rakefile("bootstrap.rake") do
    project = ask("What is the UNIX name of your project?")

    <<-TASK
      namespace :#{project} do
        task :bootstrap do
          puts "i like boots!"
        end
      end
    TASK
  end

  rakefile("seed.rake", "puts 'im plantin ur seedz'")