1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fileutils.rb: restore documentation for FileUtils

* lib/fileutils.rb: [DOC] restore documentation for FileUtils module
  which became undocumented with r63430.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64911 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
stomar 2018-10-03 19:19:33 +00:00
parent 0bceb471e8
commit a9d3601b3b

View file

@ -1,5 +1,11 @@
# frozen_string_literal: true
#
begin
require 'rbconfig'
rescue LoadError
# for make mjit-headers
end
# = fileutils.rb
#
# Copyright (c) 2000-2007 Minero Aoki
@ -83,13 +89,6 @@
# This module has all methods of FileUtils module, but never changes
# files/directories. This equates to passing the <tt>:noop</tt> and
# <tt>:verbose</tt> flags to methods in FileUtils.
#
begin
require 'rbconfig'
rescue LoadError
# for make mjit-headers
end
module FileUtils