method
vendor
v4.0.2 -
Show latest stable
- Class:
Rails::Generators::Actions
vendor(filename, data=nil, &block)public
Create a new file in the vendor/ directory. Code can be specified in a block or a data string can be given.
vendor("sekrit.rb") do sekrit_salt = "#{Time.now}--#{3.years.ago}--#{rand}--" "salt = '#{sekrit_salt}'" end vendor("foreign.rb", "# Foreign code is fun")