* lib/fileutils.rb: Hide internal methods from RDoc. Patch by Darragh
Curran. [Ruby 1.9 - Bug #4684] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31541 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d6e3bc4ce4
commit
57580b76e8
@ -1,3 +1,8 @@
|
|||||||
|
Fri May 13 07:49:02 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
* lib/fileutils.rb: Hide internal methods from RDoc. Patch by Darragh
|
||||||
|
Curran. [Ruby 1.9 - Bug #4684]
|
||||||
|
|
||||||
Fri May 13 07:36:23 2011 Eric Hodel <drbrain@segment7.net>
|
Fri May 13 07:36:23 2011 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* lib/webrick/httpservlet/erbhandler.rb: Add documentation.
|
* lib/webrick/httpservlet/erbhandler.rb: Add documentation.
|
||||||
|
@ -739,7 +739,7 @@ module FileUtils
|
|||||||
end
|
end
|
||||||
module_function :remove_entry_secure
|
module_function :remove_entry_secure
|
||||||
|
|
||||||
def fu_have_symlink? #:nodoc
|
def fu_have_symlink? #:nodoc:
|
||||||
File.symlink nil, nil
|
File.symlink nil, nil
|
||||||
rescue NotImplementedError
|
rescue NotImplementedError
|
||||||
return false
|
return false
|
||||||
@ -860,7 +860,7 @@ module FileUtils
|
|||||||
|
|
||||||
OPT_TABLE['install'] = [:mode, :preserve, :noop, :verbose]
|
OPT_TABLE['install'] = [:mode, :preserve, :noop, :verbose]
|
||||||
|
|
||||||
def user_mask(target)
|
def user_mask(target) #:nodoc:
|
||||||
mask = 0
|
mask = 0
|
||||||
target.each_byte do |byte_chr|
|
target.each_byte do |byte_chr|
|
||||||
case byte_chr.chr
|
case byte_chr.chr
|
||||||
@ -878,7 +878,7 @@ module FileUtils
|
|||||||
end
|
end
|
||||||
private_module_function :user_mask
|
private_module_function :user_mask
|
||||||
|
|
||||||
def mode_mask(mode, path)
|
def mode_mask(mode, path) #:nodoc:
|
||||||
mask = 0
|
mask = 0
|
||||||
mode.each_byte do |byte_chr|
|
mode.each_byte do |byte_chr|
|
||||||
case byte_chr.chr
|
case byte_chr.chr
|
||||||
@ -900,7 +900,7 @@ module FileUtils
|
|||||||
end
|
end
|
||||||
private_module_function :mode_mask
|
private_module_function :mode_mask
|
||||||
|
|
||||||
def symbolic_modes_to_i(modes, path)
|
def symbolic_modes_to_i(modes, path) #:nodoc:
|
||||||
current_mode = (File.stat(path).mode & 07777)
|
current_mode = (File.stat(path).mode & 07777)
|
||||||
modes.split(/,/).inject(0) do |mode, mode_sym|
|
modes.split(/,/).inject(0) do |mode, mode_sym|
|
||||||
mode_sym = "a#{mode_sym}" if mode_sym =~ %r!^[+-=]!
|
mode_sym = "a#{mode_sym}" if mode_sym =~ %r!^[+-=]!
|
||||||
@ -921,7 +921,7 @@ module FileUtils
|
|||||||
end
|
end
|
||||||
private_module_function :symbolic_modes_to_i
|
private_module_function :symbolic_modes_to_i
|
||||||
|
|
||||||
def fu_mode(mode, path)
|
def fu_mode(mode, path) #:nodoc:
|
||||||
mode.is_a?(String) ? symbolic_modes_to_i(mode, path) : mode
|
mode.is_a?(String) ? symbolic_modes_to_i(mode, path) : mode
|
||||||
end
|
end
|
||||||
private_module_function :fu_mode
|
private_module_function :fu_mode
|
||||||
|
Loading…
x
Reference in New Issue
Block a user