Class: Trollop::IOOption
Overview
Option class for handling IO objects and URLs. Note that this will return the file-handle, not the file-name in the case of file-paths given to it.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Option
#default, #long, #multi_given, #name, #short
Instance Method Summary collapse
Methods inherited from Option
#array_default?, #callback, create, #desc, #description_with_default, #educate, #flag?, #initialize, #multi, #multi_arg?, #opts, #opts=, register_alias, #required?, #short?, #single_arg?
Constructor Details
This class inherits a constructor from Trollop::Option
Instance Method Details
#parse(paramlist, _neg_given) ⇒ Object
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 |
# File 'lib/trollop.rb', line 800 def parse(paramlist, _neg_given) paramlist.map do |pg| pg.map do |param| if param =~ /^(stdin|-)$/i $stdin else require 'open-uri' begin open param rescue SystemCallError => e raise CommandlineError, "file or url for option '#{self.name}' cannot be opened: #{e.}" end end end end end |
#type_format ⇒ Object
799 |
# File 'lib/trollop.rb', line 799 def type_format ; "=<filename/uri>" ; end |