Sha256: 90858d9c65b50de2f6d15abba577a009f720c73c70e6ecf7dedca23fd1e4a21a
Contents?: true
Size: 587 Bytes
Versions: 25
Compression:
Stored size: 587 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2019 Eric Crane. All rights reserved. # # It is the value of the last command that was run. # module Gloo module Core class It attr_accessor :value # # Set up the object. # def initialize @value = nil end # # Set the value of it. # def set_to( new_value ) @value = new_value end # # Get the string representation of it. # def to_s return @value.to_s end end end end
Version data entries
25 entries across 25 versions & 1 rubygems