Sha256: 3f52db05ef5abe6346901134b1c550fd897f2022162c4797451f8a99a157c901
Contents?: true
Size: 863 Bytes
Versions: 12
Compression:
Stored size: 863 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # An Untyped Object. # module Gloo module Objs class Untyped < Gloo::Core::Obj KEYWORD = 'untyped'.freeze KEYWORD_SHORT = 'any'.freeze # # The name of the object type. # def self.typename return KEYWORD end # # The short name of the object type. # def self.short_typename return KEYWORD_SHORT end # --------------------------------------------------------------------- # Messages # --------------------------------------------------------------------- # # Get a list of message names that this object receives. # def self.messages return super # + [ "run" ] end end end end
Version data entries
12 entries across 12 versions & 1 rubygems