Sha256: 93c8fbc9da221ff99599edfcd167d54086e63b4ae13f5c07ff198086d98eb0af
Contents?: true
Size: 330 Bytes
Versions: 40
Compression:
Stored size: 330 Bytes
Contents
module Test module Ox class Change attr_accessor :time attr_accessor :user attr_accessor :comment def initialize(comment=nil, time=nil, user=nil) @user = user || ENV['USER'] @time = time || Time.now @comment = comment end end # Change end # Ox end # Test
Version data entries
40 entries across 40 versions & 1 rubygems