18 lines
299 B
Ruby
18 lines
299 B
Ruby
module Producer
|
|
module Core
|
|
class Action
|
|
require 'forwardable'
|
|
|
|
extend Forwardable
|
|
def_delegators :@env, :output, :remote
|
|
|
|
attr_accessor :env, :arguments
|
|
|
|
def initialize(env, *args)
|
|
@env = env
|
|
@arguments = args
|
|
end
|
|
end
|
|
end
|
|
end
|