lib

lib(filename, data=nil, &block)
Instance Public methods

Create a new file in the lib/ directory. Code can be specified in a block or a data string can be given.

1
2
3
4
5
lib("crypto.rb") do
  "crypted_special_value = '#{rand}--#{Time.now}--#{rand(1337)}--'"
end
 
lib("foreign.rb", "# Foreign code is fun")
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.