repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Updated RubySpec source to 55122684.
[rbx.git]
/
spec
/
frozen
/
1.8
/
library
/
uri
/
fixtures
/
classes.rb
blob
e1179307cc6c7c2d957258237bb9584da9801f1b
1
require 'uri'
2
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