class WRKFLO::Editor

Public Instance Methods

init() click to toggle source
# File lib/wrkflo/steps/editor.rb, line 8
def init
  @editor = config.which
  @step = Step.create(@editor.to_sym, @raw_config, project)
  @name = "editor[#{@step.name}]"
end
run() click to toggle source
# File lib/wrkflo/steps/editor.rb, line 14
def run;    @step.run;    end
unrun() click to toggle source
# File lib/wrkflo/steps/editor.rb, line 15
def unrun;  @step.unrun;  end