File: child.rb

package info (click to toggle)
ruby-rabl-rails 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 288 kB
  • sloc: ruby: 1,630; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
module RablRails
  module Nodes
    class Child < Glue
      attr_reader :name

      def initialize(name, template)
        super(template)
        @name = name
      end
    end
  end
end