asciinema.org/app/services/asciicast_updater.rb
2014-11-27 12:30:08 +00:00

19 lines
326 B
Ruby

class AsciicastUpdater
def update(asciicast, attributes)
asciicast.attributes = attributes
need_snapshot_update = asciicast.snapshot_at_changed?
if asciicast.save
if need_snapshot_update
AsciicastSnapshotUpdater.new.update(asciicast)
end
true
else
false
end
end
end