Sha256: 241007438533be889f6417d7c15d9330ac5140d672aed84a2d394cdbd41d485b

Contents?: true

Size: 303 Bytes

Versions: 1

Compression:

Stored size: 303 Bytes

Contents

module Gatling
  class FileHelper
    class << self

      def make_required_directories
        Gatling::Configuration.paths.each { | key, directory | make_dir directory  }
      end

      private

      def make_dir(path)
        FileUtils::mkdir_p(File.join(path))
      end
      
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gatling-1.0.7 lib/gatling/file_helper.rb