class Boolminot::Clauses::Generic

Attributes

body[R]
opts[R]
type[R]

Public Class Methods

new(type, body, opts = {}) click to toggle source
# File lib/boolminot/clauses/generic.rb, line 6
def initialize(type, body, opts = {})
  @type = type.to_sym
  @body = body
  @opts = opts
end