6 lines
100 B
Ruby
6 lines
100 B
Ruby
require "optparse"
|
|
|
|
OptionParser.accept Pathname do |path|
|
|
Pathname(path).expand_path if path
|
|
end
|