Skip to content

Instantly share code, notes, and snippets.

@matsumotory
matsumotory / gist:3765572
Created September 22, 2012 08:44
Traffic exceeded tweet by mod_mruby
##
# SimpleURI
class SimpleURI
PARAMS_ORDER = [:scheme, :userinfo, :host, :port, :registry, :path, :opaque, :query, :fragment]
def initialize(*args)
args = SimpleURI.split(args.first) if args.length == 1
@uri = {}
args.each_index{|idx|