Files
producer-core/lib/producer/core/actions/echo.rb
2013-12-23 23:31:15 +00:00

12 lines
175 B
Ruby

module Producer
module Core
module Actions
class Echo < Action
def apply
env.output.puts arguments.first
end
end
end
end
end