summaryrefslogtreecommitdiff
path: root/lib/optparse/uri.rb
blob: 31d10593b15b482873d2b7e92d8ef130e355c732 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: false
# -*- ruby -*-

require_relative '../optparse'
require 'uri'

OptionParser.accept(URI) {|s,| URI.parse(s) if s}