Method: FileUtils.commands
- Defined in:
- lib/fileutils.rb
permalink .commands ⇒ Object
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"]
2572 2573 2574 |
# File 'lib/fileutils.rb', line 2572 def self.commands OPT_TABLE.keys end |