This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit 6fb070f7d04a5a7b251ff5dac22bd1fb81fd346c
tree 3442ef1b957b2050c3fd6b147ea9e045358174ad
parent 37ad872020b9ba2b7d43ff3eca13b6b3b7a4ac3e
tree 3442ef1b957b2050c3fd6b147ea9e045358174ad
parent 37ad872020b9ba2b7d43ff3eca13b6b3b7a4ac3e
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
CHANGELOG | ||
| |
LICENSE | Thu Jun 05 11:29:57 -0700 2008 | |
| |
README | ||
| |
Rakefile | ||
| |
lib/ | ||
| |
spec/ | ||
| |
tasks/ | ||
| |
website/ |
README
Addressable is a replacement for the URI implementation that is part of
Ruby's standard library. It more closely conforms to the relevant RFCs and
adds support for IRIs and URI templates.
Example usage:
require 'addressable/uri'
uri = Addressable::URI.parse("http://example.com/path/to/resource/")
uri.scheme
#=> "http"
uri.host
#=> "example.com"
uri.path
#=> "/path/to/resource/"
uri = Addressable::URI.parse("http://www.詹姆斯.com/")
uri.normalize
#=> #<Addressable::URI:0xc9a4c8 URI:http://www.xn--8ws00zhy3a.com/>
Addressable::URI.expand_template("http://example.com/{-list|+|query}/", {
"query" => "an example query".split(" ")
})
#=> #<Addressable::URI:0xc9d95c URI:http://example.com/an+example+query/>
Addressable::URI.parse(
"http://example.com/a/b/c/?one=1&two=2#foo"
).extract_mapping(
"http://{host}/{-suffix|/|segments}?{-join|&|one,two,bogus}\#{fragment}"
)
#=>
# {
# "host" => "example.com",
# "segments" => ["a", "b", "c"],
# "one" => "1",
# "two" => "2",
# "fragment" => "foo"
# }








