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/generators/actions.rb, line 170
def lib(filename, data=nil, &block)
log :lib, filename
create_file("lib/#{filename}", data, :verbose => false, &block)
end