Sha256: 6815ecd19f2e884f8a3b7f5417381f5497478c594596646f5e4b56e842fc6026
Contents?: true
Size: 862 Bytes
Versions: 22
Compression:
Stored size: 862 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 = 'un'.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
22 entries across 22 versions & 1 rubygems