summaryrefslogtreecommitdiff
path: root/lib/rake/file_utils_ext.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rake/file_utils_ext.rb')
-rw-r--r--lib/rake/file_utils_ext.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/rake/file_utils_ext.rb b/lib/rake/file_utils_ext.rb
index b110f0952b..309159aec1 100644
--- a/lib/rake/file_utils_ext.rb
+++ b/lib/rake/file_utils_ext.rb
@@ -18,9 +18,6 @@ module Rake
FileUtilsExt.verbose_flag = DEFAULT
FileUtilsExt.nowrite_flag = false
- $fileutils_verbose = true
- $fileutils_nowrite = false
-
FileUtils.commands.each do |name|
opts = FileUtils.options_of name
default_options = []
@@ -90,7 +87,7 @@ module Rake
oldvalue
end
- # Use this function to prevent potentially destructive Ruby code
+ # Use this function to prevent potentially destructive ruby code
# from running when the :nowrite flag is set.
#
# Example:
@@ -138,7 +135,8 @@ module Rake
optdecl.each do |name|
h.delete name
end
- raise ArgumentError, "no such option: #{h.keys.join(' ')}" unless h.empty?
+ raise ArgumentError, "no such option: #{h.keys.join(' ')}" unless
+ h.empty?
end
extend self