addressable 2.3.2 → 2.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/website/index.html DELETED
@@ -1,110 +0,0 @@
1
- <!DOCTYPE html>
2
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
3
- <head>
4
- <meta charset="utf-8"/>
5
- <title>Addressable</title>
6
- <style type="text/css">
7
- * {
8
- font-size: 100%;
9
- margin: 0;
10
- padding: 0;
11
- }
12
-
13
- body {
14
- font-family: lucida grande, verdana, sans-serif;
15
- margin: 1em;
16
- }
17
-
18
- a {
19
- color: #880000;
20
- }
21
-
22
- a:visited {
23
- color: #333333;
24
- }
25
-
26
- h1 {
27
- font-size: 2em;
28
- margin: 0 0 0.8em 0;
29
- text-align: center;
30
- }
31
-
32
- h2 {
33
- font-size: 1em;
34
- margin: 0.8em 0;
35
- }
36
-
37
- p {
38
- margin: 0.8em 0;
39
- }
40
-
41
- ul {
42
- font-size: 0.9em;
43
- margin: 0 0 0 1.5em;
44
- }
45
-
46
- div {
47
- width: 50%;
48
- margin: 0 auto;
49
- padding: 0.8em;
50
- background-color: #AA5852;
51
- border: 2px solid #C2645D;
52
- }
53
-
54
- @media print {
55
- body {
56
- font-size: 0.9em;
57
- }
58
-
59
- a {
60
- text-decoration: none;
61
- color: #000;
62
- }
63
- }
64
- </style>
65
- </head>
66
- <body>
67
- <h1>Addressable</h1>
68
- <div>
69
- <p>
70
- Addressable is a replacement for the URI implementation that is part
71
- of Ruby's standard library. It more closely conforms to the relevant
72
- RFCs and adds support for IRIs and URI templates.
73
- </p>
74
- <ul>
75
- <li>
76
- <a href="http://rubyforge.org/projects/addressable/">
77
- Project Page
78
- </a>
79
- </li>
80
- <li>
81
- <a href="http://github.com/sporkmonger/addressable/tree/">
82
- GitHub Page
83
- </a>
84
- </li>
85
- <li><a href="/api/">API</a></li>
86
- <li><a href="/specdoc/">Specifications</a></li>
87
- <li><a href="/coverage/">Code Coverage</a></li>
88
- </ul>
89
- <p>
90
- You know what to do:
91
- </p>
92
- <p>
93
- <code>sudo gem install addressable</code>
94
- </p>
95
- <p>
96
- Alternatively, you can:
97
- </p>
98
- <p>
99
- <code>
100
- git submodule add
101
- git://github.com/sporkmonger/addressable.git
102
- vendor/gems/addressable
103
- </code>
104
- </p>
105
- <p>
106
- Addressable works in Ruby 1.8.x, 1.9.x, and JRuby.
107
- </p>
108
- </div>
109
- </body>
110
- </html>