Method: AbstractBuilder#initialize
- Defined in:
- lib/abstract_builder.rb
#initialize ⇒ AbstractBuilder
Returns a new instance of AbstractBuilder.
21 22 23 24 25 26 27 |
# File 'lib/abstract_builder.rb', line 21 def initialize @format_key = @@format_key @ignore_value = @@ignore_value @cache_store = @@cache_store @lazy_cache = LazyCache.new(@@cache_store) @stack = [] end |