Sha256: a3e9369c4f7e321ae310b08047bcecd1c117912fcd07a40e40e4cbaacb507208
Contents?: true
Size: 506 Bytes
Versions: 15
Compression:
Stored size: 506 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # An abstract base object. # All objects and verbs derive from this. # module Gloo module Core class Baseo attr_accessor :name # Set up the object. def initialize @name = '' end # # The object type, suitable for display. # def type_display raise 'this method should be overriden' end end end end
Version data entries
15 entries across 15 versions & 1 rubygems