Method: Codshit::Rule#is

Defined in:
lib/codshit.rb

#is(*stuff) ⇒ Object



64
65
66
67
68
69
70
# File 'lib/codshit.rb', line 64

def is(*stuff)
  if block_given?
    @is << Choice.new(yield)
  else
    @is << stuff
  end
end