Module: EXEL::Job

Defined in:
lib/exel/job.rb

Defined Under Namespace

Classes: Parser

Class Method Summary collapse

Class Method Details

.define(job_name, &block) ⇒ Object


4
5
6
7
# File 'lib/exel/job.rb', line 4

def define(job_name, &block)
  fail "Job #{job_name.inspect} is already defined" unless registry[job_name].nil?
  registry[job_name] = block
end

.registryObject


9
10
11
# File 'lib/exel/job.rb', line 9

def registry
  @registry ||= {}
end

.run(dsl_code_or_name, context = {}) ⇒ Object


13
14
15
16
# File 'lib/exel/job.rb', line 13

def run(dsl_code_or_name, context = {})
  context = EXEL::Context.new(context) if context.is_a?(Hash)
  (ast = parse(dsl_code_or_name)) ? ast.start(context) : fail(%(Job "#{dsl_code_or_name}" not found))
end