Class: Rascut::Plugin::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/rascut/plugin/base.rb

Direct Known Subclasses

WriteFcshErrorOutput

Instance Method Summary collapse

Constructor Details

#initialize(command) ⇒ Base

Returns a new instance of Base.



5
6
7
# File 'lib/rascut/plugin/base.rb', line 5

def initialize(command)
  @command = command
end

Instance Method Details

#configObject



9
10
11
12
# File 'lib/rascut/plugin/base.rb', line 9

def config
  # ...
  {}
end

#runObject



14
15
16
# File 'lib/rascut/plugin/base.rb', line 14

def run
  raise 'should\'d be run method override!'
end