method

mkdir

mkdir(list, mode: nil, noop: nil, verbose: nil)
private

Creates one or more directories.

Bundler::FileUtils.mkdir 'test'
Bundler::FileUtils.mkdir %w( tmp data )
Bundler::FileUtils.mkdir 'notexist', :noop => true  # Does not really create.
Bundler::FileUtils.mkdir 'tmp', :mode => 0700