Class: Orientea::Command

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
lib/orientea/command.rb

Direct Known Subclasses

ChangingCommand, CreatingCommand

Class Method Summary collapse

Class Method Details

.action(&block) ⇒ Object



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

def self.action(&block)
  define_method(:action, &block)
end

.undo(&block) ⇒ Object



10
11
12
# File 'lib/orientea/command.rb', line 10

def self.undo(&block)
  define_method(:undo, &block)
end