method

file

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")