class Quails::Railtie::Configuration

Public Class Methods

new() click to toggle source
# File railties/lib/rails/railtie/configuration.rb, line 8
def initialize
  @@options ||= {}
end

Public Instance Methods

after_initialize(&block) click to toggle source

Last configurable block to run. Called after frameworks initialize.

# File railties/lib/rails/railtie/configuration.rb, line 70
def after_initialize(&block)
  ActiveSupport.on_load(:after_initialize, yield: true, &block)
end
app_generators() { |app_generators| ... } click to toggle source

This allows you to modify application's generators from Railties.

Values set on app_generators will become defaults for application, unless application overwrites them.

# File railties/lib/rails/railtie/configuration.rb, line 47
def app_generators
  @@app_generators ||= Quails::Configuration::Generators.new
  yield(@@app_generators) if block_given?
  @@app_generators
end
app_middleware() click to toggle source

This allows you to modify the application's middlewares from Engines.

All operations you run on the app_middleware will be replayed on the application once it is defined and the default_middlewares are created

# File railties/lib/rails/railtie/configuration.rb, line 39
def app_middleware
  @@app_middleware ||= Quails::Configuration::MiddlewareStackProxy.new
end
before_configuration(&block) click to toggle source

First configurable block to run. Called before any initializers are run.

# File railties/lib/rails/railtie/configuration.rb, line 54
def before_configuration(&block)
  ActiveSupport.on_load(:before_configuration, yield: true, &block)
end
before_eager_load(&block) click to toggle source

Third configurable block to run. Does not run if config.cache_classes set to false.

# File railties/lib/rails/railtie/configuration.rb, line 60
def before_eager_load(&block)
  ActiveSupport.on_load(:before_eager_load, yield: true, &block)
end
before_initialize(&block) click to toggle source

Second configurable block to run. Called before frameworks initialize.

# File railties/lib/rails/railtie/configuration.rb, line 65
def before_initialize(&block)
  ActiveSupport.on_load(:before_initialize, yield: true, &block)
end
eager_load_namespaces() click to toggle source

All namespaces that are eager loaded

# File railties/lib/rails/railtie/configuration.rb, line 18
def eager_load_namespaces
  @@eager_load_namespaces ||= []
end
respond_to?(name, include_private = false) click to toggle source
Calls superclass method
# File railties/lib/rails/railtie/configuration.rb, line 85
def respond_to?(name, include_private = false)
  super || @@options.key?(name.to_sym)
end
to_prepare(&blk) click to toggle source

Defines generic callbacks to run before after_initialize. Useful for Quails::Railtie subclasses.

# File railties/lib/rails/railtie/configuration.rb, line 81
def to_prepare(&blk)
  to_prepare_blocks << blk if blk
end
to_prepare_blocks() click to toggle source

Array of callbacks defined by to_prepare.

# File railties/lib/rails/railtie/configuration.rb, line 75
def to_prepare_blocks
  @@to_prepare_blocks ||= []
end
watchable_dirs() click to toggle source

Add directories that should be watched for change. The key of the hashes should be directories and the values should be an array of extensions to match in each directory.

# File railties/lib/rails/railtie/configuration.rb, line 30
def watchable_dirs
  @@watchable_dirs ||= {}
end
watchable_files() click to toggle source

Add files that should be watched for change.

# File railties/lib/rails/railtie/configuration.rb, line 23
def watchable_files
  @@watchable_files ||= []
end

Private Instance Methods

method_missing(name, *args, &blk) click to toggle source
Calls superclass method
# File railties/lib/rails/railtie/configuration.rb, line 91
def method_missing(name, *args, &blk)
  if name.to_s =~ /=$/
    @@options[$`.to_sym] = args.first
  elsif @@options.key?(name)
    @@options[name]
  else
    super
  end
end