class AssetFinder::Configuration

Constants

DEFAULT

Attributes

javascript_patterns[RW]
javascript_root_path[RW]
normalize_index_file[RW]
stylesheet_patterns[RW]
stylesheet_root_path[RW]

Public Class Methods

new(options = {}) click to toggle source
# File lib/asset_finder/configuration.rb, line 17
def initialize(options = {})
  DEFAULT.keys.each do |k|
    public_send(:"#{k}=", options[k] || DEFAULT[k])
  end
end