Class: Faml::Engine

Inherits:
Temple::Engine
  • Object
show all
Defined in:
lib/faml/engine.rb

Constant Summary collapse

DEFAULT_OPTIONS =
{
    format: :html,
    attr_quote: "'",
}.freeze

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ Engine

Returns a new instance of Engine.



19
20
21
# File 'lib/faml/engine.rb', line 19

def initialize(opts = {})
  super(DEFAULT_OPTIONS.merge(opts))
end