Method: FileUtils.commands

Defined in:
lib/fileutils.rb

.commandsObject

Returns an array of the string names of FileUtils methods that accept one or more keyword arguments:

FileUtils.commands.sort.take(3) # => ["cd", "chdir", "chmod"]
[View source]

2572
2573
2574
# File 'lib/fileutils.rb', line 2572

def self.commands
  OPT_TABLE.keys
end