rabl-rails/lib/rabl-fast-json/template.rb

11 lines
195 B
Ruby
Raw Normal View History

2012-02-22 18:14:00 +00:00
module RablFastJson
class CompiledTemplate
attr_accessor :source, :data, :root_name
2012-02-22 18:14:00 +00:00
2012-02-27 13:49:34 +00:00
delegate :[], :[]=, :merge!, :to => :source
2012-02-22 18:14:00 +00:00
def initialize
@source = {}
end
end
end