Updated RubySpec source to 55122684.
[rbx.git] / spec / frozen / 1.8 / library / uri / fixtures / classes.rb
blobe1179307cc6c7c2d957258237bb9584da9801f1b
1 require 'uri'
3 module URISpec
4   def self.components(uri)
5     result = {}
6     uri.component.each do |component|
7       result[component] = uri.send(component)
8     end
9     result
10   end
11 end