method

mkdir

ruby latest stable - Class: Bundler::FileUtils

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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