Method: FileUtils.options
- Defined in:
- lib/fileutils.rb
permalink .options ⇒ Object
Returns an array of the string keyword names:
FileUtils..take(3) # => ["noop", "verbose", "force"]
2580 2581 2582 |
# File 'lib/fileutils.rb', line 2580 def self. OPT_TABLE.values.flatten.uniq.map {|sym| sym.to_s } end |