mirror of
https://github.com/mistergibson/gxg-web-client.git
synced 2026-08-15 03:26:00 -07:00
7 lines
131 B
Ruby
7 lines
131 B
Ruby
# frozen_string_literal: false
|
|
# -*- ruby -*-
|
|
|
|
require 'optparse'
|
|
require 'uri'
|
|
|
|
OptionParser.accept(URI) {|s,| URI.parse(s) if s}
|