Class: Command

Inherits:
Object
  • Object
show all
Defined in:
lib/tagfinder/commands/command.rb

Direct Known Subclasses

Find

Instance Method Summary collapse

Instance Method Details

#executeObject

Raises:

  • (NotImplementedError)


2
3
4
# File 'lib/tagfinder/commands/command.rb', line 2

def execute
  raise NotImplementedError
end

#unexecuteObject

Raises:

  • (NotImplementedError)


6
7
8
# File 'lib/tagfinder/commands/command.rb', line 6

def unexecute
  raise NotImplementedError
end