File: condition.rb

package info (click to toggle)
ruby-rabl-rails 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 268 kB
  • ctags: 179
  • sloc: ruby: 1,480; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 230 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module RablRails
  module Nodes
    class Condition
      include Node

      attr_reader :condition, :nodes

      def initialize(condition, nodes)
        @condition = condition
        @nodes = nodes
      end
    end
  end
end