mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
186 B
Ruby
12 lines
186 B
Ruby
![]() |
require 'uri'
|
||
|
|
||
|
module URISpec
|
||
|
def self.components(uri)
|
||
|
result = {}
|
||
|
uri.component.each do |component|
|
||
|
result[component] = uri.send(component)
|
||
|
end
|
||
|
result
|
||
|
end
|
||
|
end
|