method

initializer

rails latest stable - Class: Rails::TemplateRunner

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.

initializer(filename, data = nil, &block)
public

Create a new initializer with the provided code (either in a block or a string).

Examples

  initializer("globals.rb") do
    data = ""

    ['MY_WORK', 'ADMINS', 'BEST_COMPANY_EVAR'].each do
      data << "#{const} = :entp"
    end

    data
  end

  initializer("api.rb", "API_KEY = '123456'")