Class: UndoManager::Command
- Inherits:
-
Object
- Object
- UndoManager::Command
- Defined in:
- lib/undo_manager/command.rb
Instance Method Summary collapse
Instance Method Details
#do ⇒ Object
4 5 6 |
# File 'lib/undo_manager/command.rb', line 4 def do raise "Implement me in subclass" end |
#undo ⇒ Object
8 9 10 |
# File 'lib/undo_manager/command.rb', line 8 def undo raise "Implement me in subclass" end |