class RubyEventStore::Mappers::ForgottenData

Constants

FORGOTTEN_DATA

Public Class Methods

new(string = FORGOTTEN_DATA) click to toggle source
# File lib/ruby_event_store/mappers/forgotten_data.rb, line 8
def initialize(string = FORGOTTEN_DATA)
  @string = string
end

Public Instance Methods

==(other) click to toggle source
# File lib/ruby_event_store/mappers/forgotten_data.rb, line 16
def ==(other)
  @string == other
end
Also aliased as: eql?
eql?(other)
Alias for: ==
method_missing(*) click to toggle source
# File lib/ruby_event_store/mappers/forgotten_data.rb, line 21
def method_missing(*)
  self
end
respond_to_missing?(*) click to toggle source
# File lib/ruby_event_store/mappers/forgotten_data.rb, line 25
def respond_to_missing?(*)
  true
end
to_s() click to toggle source
# File lib/ruby_event_store/mappers/forgotten_data.rb, line 12
def to_s
  @string
end