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:
parent
0bceb471e8
commit
a9d3601b3b
1 changed files with 7 additions and 8 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue