Sha256: 8c42e03d523c6f6ae357b15f1ef1df4399ce7aaa710b822fc902597c69ce738b

Contents?: true

Size: 316 Bytes

Versions: 4

Compression:

Stored size: 316 Bytes

Contents

module LearnChef module Workflow
  def stdout_file(*paths)
    File.join(paths, 'stdout')
  end

  def stderr_file(*paths)
    File.join(paths, 'stderr')
  end

  def status_file(*paths)
    File.join(paths, 'status')
  end

  def command_file(*paths)
    File.join(paths, 'command')
  end
end; end

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
chef-12.8.1 acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/cache_helpers.rb
chef-12.8.1 acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/cache_helpers.rb
chef-12.8.1-universal-mingw32 acceptance/top-cookbooks/test_run/learn-the-basics-ubuntu/cookbooks/workflow/libraries/cache_helpers.rb
chef-12.8.1-universal-mingw32 acceptance/top-cookbooks/test_run/learn-the-basics-windows/cookbooks/workflow/libraries/cache_helpers.rb