factor-io/factor

View on GitHub
lib/factor/workflow/runtime.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: UTF-8
require 'factor/workflow/dsl'

module Factor
  module Workflow
    class Runtime
      extend Forwardable

      def initialize(options={})
        @options = options
        @dsl = DSL.new(@options)
      end

      def_delegator :@dsl, :instance_eval, :load
    end
  end
end