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.
lib(filename, data = nil, &block)
public
Create a new file in the lib/ directory.
Code can be specified in a block or a data string can be given.
Examples
lib("crypto.rb") do
"crypted_special_value = '#{rand}--#{Time.now}--#{rand(1337)}--'"
end
lib("foreign.rb", "# Foreign code is fun")
# File railties/lib/rails_generator/generators/applications/app/template_runner.rb, line 171
def lib(filename, data = nil, &block)
log 'lib', filename
file("lib/#{filename}", data, false, &block)
end