class Ez::Registry::Record

Attributes

by[RW]
data[R]

Public Class Methods

new(data, by) click to toggle source
# File lib/ez/registry/record.rb, line 9
def initialize(data, by)
  @data  = data
  @by    = by
end

Public Instance Methods

inspect() click to toggle source
# File lib/ez/registry/record.rb, line 14
def inspect
  "<Record by: #{by}, data: #{data}>"
end