Sha256: ec4492feef21960567ec10aabd7f696244155516cc75f99124776e0930c966da
Contents?: true
Size: 439 Bytes
Versions: 14
Compression:
Stored size: 439 Bytes
Contents
# module JSS # module ManagementHistory # This is mixed in to the history event classes to # provide hash-like access to their attributes, so that # some_event[:date_time] # works the same as # some_event.date_time # just as with OpenStruct objects # module HashLike def [](attr) send attr.to_sym end end # HashLike end # module ManagementHistory end # module JSS
Version data entries
14 entries across 14 versions & 1 rubygems