DEBSOURCES
Skip Quicknav
sources / ruby-rabl-rails / 0.6.2-1 / lib / rabl-rails / nodes / extend.rb
123456789101112
module RablRails module Nodes class Extend attr_reader :nodes, :locals def initialize(nodes, locals) @nodes = nodes @locals = locals end end end end