2014-01-09 01:16:13 +00:00

41 lines
868 B
Ruby

module Producer
module Core
class CLI
ArgumentError = Class.new(::ArgumentError)
USAGE = "Usage: #{File.basename $0} recipe_file"
EX_USAGE = 64
class << self
def run!(arguments, output: $stderr)
begin
cli = new(arguments)
rescue ArgumentError
output.puts USAGE
exit EX_USAGE
end
cli.run
end
end
attr_reader :arguments, :stdout, :recipe
def initialize(arguments, stdout: $stdout)
raise ArgumentError unless arguments.any?
@arguments = arguments
@stdout = stdout
end
def run(worker: Worker.new)
load_recipe
worker.process recipe.tasks
end
def load_recipe
@recipe = Recipe.evaluate_from_file(@arguments.first, Env.new)
end
end
end
end