Parent

Sprockets::EcoTemplate

Tilt engine class for the Eco compiler. Depends on the `eco` gem.

For more infomation see:

  https://github.com/sstephenson/ruby-eco
  https://github.com/sstephenson/eco

Public Class Methods

engine_initialized?() click to toggle source

Check to see if Eco is loaded

    # File lib/sprockets/eco_template.rb, line 13
13:     def self.engine_initialized?
14:       defined? ::Eco
15:     end

Public Instance Methods

evaluate(scope, locals, &block) click to toggle source

Compile template data with Eco compiler.

Returns a JS function definition String. The result should be assigned to a JS variable.

    # => "function(...) {...}"
    # File lib/sprockets/eco_template.rb, line 34
34:     def evaluate(scope, locals, &block)
35:       Eco.compile(data)
36:     end
initialize_engine() click to toggle source

Autoload eco library. If the library isn’t loaded, Tilt will produce a thread safetly warning. If you intend to use `.eco` files, you should explicitly require it.

    # File lib/sprockets/eco_template.rb, line 20
20:     def initialize_engine
21:       require_template_library 'eco'
22:     end
prepare() click to toggle source
    # File lib/sprockets/eco_template.rb, line 24
24:     def prepare
25:     end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.