Sha256: 7d906b03edf796703dc100dcee30d3c7127c6202fce5c6d5e443de4b7077b648

Contents?: true

Size: 604 Bytes

Versions: 23

Compression:

Stored size: 604 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 GlooLang
  module Core
    class Baseo

      attr_accessor :name

      NOT_IMPLEMENTED_ERR = 'Not implemented yet!'.freeze

      # Set up the object.
      def initialize( engine )
        @engine = engine
        @name = ''
      end

      #
      # The object type, suitable for display.
      #
      def type_display
        raise 'this method should be overriden'
      end

    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
gloo-lang-1.4.3 lib/gloo_lang/core/baseo.rb
gloo-lang-1.4.2 lib/gloo_lang/core/baseo.rb
gloo-lang-1.4.1 lib/gloo_lang/core/baseo.rb
gloo-lang-1.4.0 lib/gloo_lang/core/baseo.rb
gloo-lang-1.3.2 lib/gloo_lang/core/baseo.rb
gloo-lang-1.3.1 lib/gloo_lang/core/baseo.rb
gloo-lang-1.3.0 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.8 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.7 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.6 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.5 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.4 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.3 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.2 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.1 lib/gloo_lang/core/baseo.rb
gloo-lang-1.2.0 lib/gloo_lang/core/baseo.rb
gloo-lang-1.1.0 lib/gloo_lang/core/baseo.rb
gloo-lang-1.0.2 lib/gloo_lang/core/baseo.rb
gloo-lang-1.0.1 lib/gloo_lang/core/baseo.rb
gloo-lang-1.0.0 lib/gloo_lang/core/baseo.rb