module Toys::StandardMixins::Fileutils
A module that provides all methods in the “fileutils” standard library.
You may make the methods in the `FileUtils` standard library module available to your tool by including the following directive in your tool configuration:
include :fileutils
Public Class Methods
included(mod)
click to toggle source
@private
# File lib/toys/standard_mixins/fileutils.rb, line 20 def self.included(mod) mod.include(::FileUtils) end