Method: SlideField::ObjectRules::Debug#rules

Defined in:
lib/slidefield/objects/debug.rb

#rulesObject



3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/slidefield/objects/debug.rb', line 3

def rules
  # hack
  # `thing = 10x10` or anything but an integer will raise an error
  # however `\debug 10x10` works as expected

  property :thing, :integer
  property :thing, :string
  property :thing, :point
  property :thing, :color
  property :thing, :boolean
  property :thing, :object

  # don't call super
end