module Stitcher::Refinements::Type

Public Instance Methods

classtype() click to toggle source
# File lib/stitcher/type.rb, line 33
def classtype
        self.class == Class ? self : self.class
end
stitcher_type() click to toggle source
# File lib/stitcher/type.rb, line 29
def stitcher_type
        Stitcher::Type.new self.class == Class ? self : self.class
end
type() click to toggle source
# File lib/stitcher/type.rb, line 25
def type
        stitcher_type
end