DEBSOURCES
Skip Quicknav
sources / ruby-rabl-rails / 0.6.2-1 / lib / rabl-rails / nodes / fetch.rb
123456789101112
module RablRails module Nodes class Fetch < Child attr_reader :field def initialize(name, template, field) super(name, template) @field = field end end end end