mirror of
https://github.com/gosticks/brew.git
synced 2026-08-18 15:40:21 +00:00
7 lines
119 B
Ruby
7 lines
119 B
Ruby
require "optparse"
|
|
require "pathname"
|
|
|
|
OptionParser.accept Pathname do |path|
|
|
Pathname(path).expand_path if path
|
|
end
|