class ShapeOf::Shape

Generic shape which all shapes subclass from

Public Class Methods

new(*) click to toggle source
# File lib/shape_of.rb, line 125
def initialize(*)
  raise NotImplementedError
end
required?() click to toggle source
# File lib/shape_of.rb, line 121
def self.required?
  true
end
shape_of?(*) click to toggle source
# File lib/shape_of.rb, line 117
def self.shape_of?(*)
  raise NotImplementedError
end