class Babl::Config

There is basically two ways to use BABL: the Rails way, and the clean way.

Rails way

Clean way

Attributes

cache_templates[RW]
lookup_context[RW]
preloader[RW]
pretty[RW]
using[RW]

Public Class Methods

new() click to toggle source
# File lib/babl.rb, line 34
def initialize
    @preloader = Rendering::NoopPreloader
    @pretty = true
    @cache_templates = false
    @lookup_context = nil
    @using = []
end