Module: Acclaim::Option::Type::Pathname
- Defined in:
- lib/acclaim/option/type/pathname.rb
Overview
Handles URIs given as arguments in the command line.
Class Method Summary collapse
-
.handle(str) ⇒ Object
Parses an
URI
from the string.
Class Method Details
.handle(str) ⇒ Object
Parses an URI
from the string.
15 16 17 |
# File 'lib/acclaim/option/type/pathname.rb', line 15 def self.handle(str) ::Pathname.new str end |