method

file

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.

file(filename, data = nil, log_action = true, &block)
public

Create a new file in the Rails project folder. Specify the relative path from RAILS_ROOT. Data is the return value of a block or a data string.

Examples

  file("lib/fun_party.rb") do
    hostname = ask("What is the virtual hostname I should use?")
    "vhost.name = #{hostname}"
  end

  file("config/apach.conf", "your apache config")