You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/app/models/snapshot.rb

22 lines
330 B
Ruby

class Snapshot
attr_reader :lines
def initialize(lines = [])
@lines = lines
end
def ==(other)
other.lines == lines
end
class Serializer
def dump(snapshot)
YAML.dump(snapshot.lines)
end
def load(value)
value.present? ? Snapshot.new(YAML.load(value)) : Snapshot.new
end
end
end