I'm looking at the documentation for FileUtils. I'm confused by the following line:
FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6'
What does the %w mean? Can you point me to the documentation?
|
|
|
|
|||||||||||||||||||
|
|
I think of %w() as a "word array" - the elements are delimited by spaces. There are other % things:
I don't know any others, but there may be some lurking around in there... |
|||
|
|
|
|
|||||
|
|
There is also %s that allows you to create any symbols, for example:
Since ruby 2.0.0 you also have:
|
||||
|
|