class UndoManager::Command

Public Instance Methods

do() click to toggle source
# File lib/undo_manager/command.rb, line 4
def do
  raise "Implement me in subclass"
end
undo() click to toggle source
# File lib/undo_manager/command.rb, line 8
def undo
  raise "Implement me in subclass"
end