stickler 2.1.3 → 2.1.4

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/HISTORY.asciidoc CHANGED
@@ -2,6 +2,10 @@ Stickler Changelog
2
2
  ==================
3
3
  Jeremy Hinegardner <jeremy@hinegardner.org>
4
4
 
5
+ Version 2.1.4 - 2011-09-09
6
+ --------------------------
7
+ * Update dependencies to newest version
8
+
5
9
  Version 2.1.3 - 2011-07-24
6
10
  --------------------------
7
11
  * Do not feed ARGV strings directly into Gem::Version (copiousfreetime/stickler#4)
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  begin
2
- USING_BONES_VERSION = '3.7.0'
2
+ USING_BONES_VERSION = '3.7.1'
3
3
  require 'bones'
4
4
  rescue LoadError
5
5
  load 'tasks/contribute.rake'
@@ -41,15 +41,15 @@ _
41
41
  # I'm explicitly controlling the version of bones.
42
42
 
43
43
 
44
- depend_on 'sinatra' , '~> 1.2.1'
44
+ depend_on 'sinatra' , '~> 1.2.6'
45
45
  depend_on 'addressable', '~> 2.2.4'
46
- depend_on 'excon' , '~> 0.6.5'
46
+ depend_on 'excon' , '~> 0.6.6'
47
47
  depend_on 'trollop' , '~> 1.16.2'
48
- depend_on 'logging' , '~> 1.5.0'
48
+ depend_on 'logging' , '~> 1.6.1'
49
49
 
50
50
  depend_on 'rake' , '~> 0.9.2'
51
51
  depend_on 'bones' , "~> #{USING_BONES_VERSION}", :development => true
52
- depend_on 'rack-test' , '~> 0.6.0', :development => true
52
+ depend_on 'rack-test' , '~> 0.6.1', :development => true
53
53
  depend_on 'bones-extras', '~> 1.3.0', :development => true
54
54
  depend_on 'builder' , '~> 3.0.0', :development => true
55
55
  depend_on 'rspec' , '~> 2.6.0', :development => true
@@ -0,0 +1,322 @@
1
+ /*
2
+ CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
3
+ Tested with XSL stylesheets 1.61.2, 1.67.2
4
+ */
5
+
6
+ span.strong {
7
+ font-weight: bold;
8
+ }
9
+
10
+ body blockquote {
11
+ margin-top: .75em;
12
+ line-height: 1.5;
13
+ margin-bottom: .75em;
14
+ }
15
+
16
+ html body {
17
+ margin: 1em 5% 1em 5%;
18
+ line-height: 1.2;
19
+ }
20
+
21
+ body div {
22
+ margin: 0;
23
+ }
24
+
25
+ h1, h2, h3, h4, h5, h6
26
+ {
27
+ color: #527bbd;
28
+ font-family: tahoma, verdana, sans-serif;
29
+ }
30
+
31
+ div.toc p:first-child,
32
+ div.list-of-figures p:first-child,
33
+ div.list-of-tables p:first-child,
34
+ div.list-of-examples p:first-child,
35
+ div.example p.title,
36
+ div.sidebar p.title
37
+ {
38
+ font-weight: bold;
39
+ color: #527bbd;
40
+ font-family: tahoma, verdana, sans-serif;
41
+ margin-bottom: 0.2em;
42
+ }
43
+
44
+ body h1 {
45
+ margin: .0em 0 0 -4%;
46
+ line-height: 1.3;
47
+ border-bottom: 2px solid silver;
48
+ }
49
+
50
+ body h2 {
51
+ margin: 0.5em 0 0 -4%;
52
+ line-height: 1.3;
53
+ border-bottom: 2px solid silver;
54
+ }
55
+
56
+ body h3 {
57
+ margin: .8em 0 0 -3%;
58
+ line-height: 1.3;
59
+ }
60
+
61
+ body h4 {
62
+ margin: .8em 0 0 -3%;
63
+ line-height: 1.3;
64
+ }
65
+
66
+ body h5 {
67
+ margin: .8em 0 0 -2%;
68
+ line-height: 1.3;
69
+ }
70
+
71
+ body h6 {
72
+ margin: .8em 0 0 -1%;
73
+ line-height: 1.3;
74
+ }
75
+
76
+ body hr {
77
+ border: none; /* Broken on IE6 */
78
+ }
79
+ div.footnotes hr {
80
+ border: 1px solid silver;
81
+ }
82
+
83
+ div.navheader th, div.navheader td, div.navfooter td {
84
+ font-family: sans-serif;
85
+ font-size: 0.9em;
86
+ font-weight: bold;
87
+ color: #527bbd;
88
+ }
89
+ div.navheader img, div.navfooter img {
90
+ border-style: none;
91
+ }
92
+ div.navheader a, div.navfooter a {
93
+ font-weight: normal;
94
+ }
95
+ div.navfooter hr {
96
+ border: 1px solid silver;
97
+ }
98
+
99
+ body td {
100
+ line-height: 1.2
101
+ }
102
+
103
+ body th {
104
+ line-height: 1.2;
105
+ }
106
+
107
+ ol {
108
+ line-height: 1.2;
109
+ }
110
+
111
+ ul, body dir, body menu {
112
+ line-height: 1.2;
113
+ }
114
+
115
+ html {
116
+ margin: 0;
117
+ padding: 0;
118
+ }
119
+
120
+ body h1, body h2, body h3, body h4, body h5, body h6 {
121
+ margin-left: 0
122
+ }
123
+
124
+ body pre {
125
+ margin: 0.5em 10% 0.5em 1em;
126
+ line-height: 1.0;
127
+ color: navy;
128
+ }
129
+
130
+ tt.literal, code.literal {
131
+ color: navy;
132
+ }
133
+
134
+ .programlisting, .screen {
135
+ border: 1px solid silver;
136
+ background: #f4f4f4;
137
+ margin: 0.5em 10% 0.5em 0;
138
+ padding: 0.5em 1em;
139
+ }
140
+
141
+ div.sidebar {
142
+ background: #ffffee;
143
+ margin: 1.0em 10% 0.5em 0;
144
+ padding: 0.5em 1em;
145
+ border: 1px solid silver;
146
+ }
147
+ div.sidebar * { padding: 0; }
148
+ div.sidebar div { margin: 0; }
149
+ div.sidebar p.title {
150
+ margin-top: 0.5em;
151
+ margin-bottom: 0.2em;
152
+ }
153
+
154
+ div.bibliomixed {
155
+ margin: 0.5em 5% 0.5em 1em;
156
+ }
157
+
158
+ div.glossary dt {
159
+ font-weight: bold;
160
+ }
161
+ div.glossary dd p {
162
+ margin-top: 0.2em;
163
+ }
164
+
165
+ dl {
166
+ margin: .8em 0;
167
+ line-height: 1.2;
168
+ }
169
+
170
+ dt {
171
+ margin-top: 0.5em;
172
+ }
173
+
174
+ dt span.term {
175
+ font-style: normal;
176
+ color: navy;
177
+ }
178
+
179
+ div.variablelist dd p {
180
+ margin-top: 0;
181
+ }
182
+
183
+ div.itemizedlist li, div.orderedlist li {
184
+ margin-left: -0.8em;
185
+ margin-top: 0.5em;
186
+ }
187
+
188
+ ul, ol {
189
+ list-style-position: outside;
190
+ }
191
+
192
+ div.sidebar ul, div.sidebar ol {
193
+ margin-left: 2.8em;
194
+ }
195
+
196
+ div.itemizedlist p.title,
197
+ div.orderedlist p.title,
198
+ div.variablelist p.title
199
+ {
200
+ margin-bottom: -0.8em;
201
+ }
202
+
203
+ div.revhistory table {
204
+ border-collapse: collapse;
205
+ border: none;
206
+ }
207
+ div.revhistory th {
208
+ border: none;
209
+ color: #527bbd;
210
+ font-family: tahoma, verdana, sans-serif;
211
+ }
212
+ div.revhistory td {
213
+ border: 1px solid silver;
214
+ }
215
+
216
+ /* Keep TOC and index lines close together. */
217
+ div.toc dl, div.toc dt,
218
+ div.list-of-figures dl, div.list-of-figures dt,
219
+ div.list-of-tables dl, div.list-of-tables dt,
220
+ div.indexdiv dl, div.indexdiv dt
221
+ {
222
+ line-height: normal;
223
+ margin-top: 0;
224
+ margin-bottom: 0;
225
+ }
226
+
227
+ /*
228
+ Table styling does not work because of overriding attributes in
229
+ generated HTML.
230
+ */
231
+ div.table table,
232
+ div.informaltable table
233
+ {
234
+ margin-left: 0;
235
+ margin-right: 5%;
236
+ margin-bottom: 0.8em;
237
+ }
238
+ div.informaltable table
239
+ {
240
+ margin-top: 0.4em
241
+ }
242
+ div.table thead,
243
+ div.table tfoot,
244
+ div.table tbody,
245
+ div.informaltable thead,
246
+ div.informaltable tfoot,
247
+ div.informaltable tbody
248
+ {
249
+ /* No effect in IE6. */
250
+ border-top: 3px solid #527bbd;
251
+ border-bottom: 3px solid #527bbd;
252
+ }
253
+ div.table thead, div.table tfoot,
254
+ div.informaltable thead, div.informaltable tfoot
255
+ {
256
+ font-weight: bold;
257
+ }
258
+
259
+ div.mediaobject img {
260
+ margin-bottom: 0.8em;
261
+ }
262
+ div.figure p.title,
263
+ div.table p.title
264
+ {
265
+ margin-top: 1em;
266
+ margin-bottom: 0.4em;
267
+ }
268
+
269
+ div.calloutlist p
270
+ {
271
+ margin-top: 0em;
272
+ margin-bottom: 0.4em;
273
+ }
274
+
275
+ a img {
276
+ border-style: none;
277
+ }
278
+
279
+ @media print {
280
+ div.navheader, div.navfooter { display: none; }
281
+ }
282
+
283
+ span.aqua { color: aqua; }
284
+ span.black { color: black; }
285
+ span.blue { color: blue; }
286
+ span.fuchsia { color: fuchsia; }
287
+ span.gray { color: gray; }
288
+ span.green { color: green; }
289
+ span.lime { color: lime; }
290
+ span.maroon { color: maroon; }
291
+ span.navy { color: navy; }
292
+ span.olive { color: olive; }
293
+ span.purple { color: purple; }
294
+ span.red { color: red; }
295
+ span.silver { color: silver; }
296
+ span.teal { color: teal; }
297
+ span.white { color: white; }
298
+ span.yellow { color: yellow; }
299
+
300
+ span.aqua-background { background: aqua; }
301
+ span.black-background { background: black; }
302
+ span.blue-background { background: blue; }
303
+ span.fuchsia-background { background: fuchsia; }
304
+ span.gray-background { background: gray; }
305
+ span.green-background { background: green; }
306
+ span.lime-background { background: lime; }
307
+ span.maroon-background { background: maroon; }
308
+ span.navy-background { background: navy; }
309
+ span.olive-background { background: olive; }
310
+ span.purple-background { background: purple; }
311
+ span.red-background { background: red; }
312
+ span.silver-background { background: silver; }
313
+ span.teal-background { background: teal; }
314
+ span.white-background { background: white; }
315
+ span.yellow-background { background: yellow; }
316
+
317
+ span.big { font-size: 2em; }
318
+ span.small { font-size: 0.6em; }
319
+
320
+ span.underline { text-decoration: underline; }
321
+ span.overline { text-decoration: overline; }
322
+ span.line-through { text-decoration: line-through; }
@@ -0,0 +1,322 @@
1
+ /*
2
+ CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
3
+ Tested with XSL stylesheets 1.61.2, 1.67.2
4
+ */
5
+
6
+ span.strong {
7
+ font-weight: bold;
8
+ }
9
+
10
+ body blockquote {
11
+ margin-top: .75em;
12
+ line-height: 1.5;
13
+ margin-bottom: .75em;
14
+ }
15
+
16
+ html body {
17
+ margin: 1em 5% 1em 5%;
18
+ line-height: 1.2;
19
+ }
20
+
21
+ body div {
22
+ margin: 0;
23
+ }
24
+
25
+ h1, h2, h3, h4, h5, h6
26
+ {
27
+ color: #527bbd;
28
+ font-family: tahoma, verdana, sans-serif;
29
+ }
30
+
31
+ div.toc p:first-child,
32
+ div.list-of-figures p:first-child,
33
+ div.list-of-tables p:first-child,
34
+ div.list-of-examples p:first-child,
35
+ div.example p.title,
36
+ div.sidebar p.title
37
+ {
38
+ font-weight: bold;
39
+ color: #527bbd;
40
+ font-family: tahoma, verdana, sans-serif;
41
+ margin-bottom: 0.2em;
42
+ }
43
+
44
+ body h1 {
45
+ margin: .0em 0 0 -4%;
46
+ line-height: 1.3;
47
+ border-bottom: 2px solid silver;
48
+ }
49
+
50
+ body h2 {
51
+ margin: 0.5em 0 0 -4%;
52
+ line-height: 1.3;
53
+ border-bottom: 2px solid silver;
54
+ }
55
+
56
+ body h3 {
57
+ margin: .8em 0 0 -3%;
58
+ line-height: 1.3;
59
+ }
60
+
61
+ body h4 {
62
+ margin: .8em 0 0 -3%;
63
+ line-height: 1.3;
64
+ }
65
+
66
+ body h5 {
67
+ margin: .8em 0 0 -2%;
68
+ line-height: 1.3;
69
+ }
70
+
71
+ body h6 {
72
+ margin: .8em 0 0 -1%;
73
+ line-height: 1.3;
74
+ }
75
+
76
+ body hr {
77
+ border: none; /* Broken on IE6 */
78
+ }
79
+ div.footnotes hr {
80
+ border: 1px solid silver;
81
+ }
82
+
83
+ div.navheader th, div.navheader td, div.navfooter td {
84
+ font-family: sans-serif;
85
+ font-size: 0.9em;
86
+ font-weight: bold;
87
+ color: #527bbd;
88
+ }
89
+ div.navheader img, div.navfooter img {
90
+ border-style: none;
91
+ }
92
+ div.navheader a, div.navfooter a {
93
+ font-weight: normal;
94
+ }
95
+ div.navfooter hr {
96
+ border: 1px solid silver;
97
+ }
98
+
99
+ body td {
100
+ line-height: 1.2
101
+ }
102
+
103
+ body th {
104
+ line-height: 1.2;
105
+ }
106
+
107
+ ol {
108
+ line-height: 1.2;
109
+ }
110
+
111
+ ul, body dir, body menu {
112
+ line-height: 1.2;
113
+ }
114
+
115
+ html {
116
+ margin: 0;
117
+ padding: 0;
118
+ }
119
+
120
+ body h1, body h2, body h3, body h4, body h5, body h6 {
121
+ margin-left: 0
122
+ }
123
+
124
+ body pre {
125
+ margin: 0.5em 10% 0.5em 1em;
126
+ line-height: 1.0;
127
+ color: navy;
128
+ }
129
+
130
+ tt.literal, code.literal {
131
+ color: navy;
132
+ }
133
+
134
+ .programlisting, .screen {
135
+ border: 1px solid silver;
136
+ background: #f4f4f4;
137
+ margin: 0.5em 10% 0.5em 0;
138
+ padding: 0.5em 1em;
139
+ }
140
+
141
+ div.sidebar {
142
+ background: #ffffee;
143
+ margin: 1.0em 10% 0.5em 0;
144
+ padding: 0.5em 1em;
145
+ border: 1px solid silver;
146
+ }
147
+ div.sidebar * { padding: 0; }
148
+ div.sidebar div { margin: 0; }
149
+ div.sidebar p.title {
150
+ margin-top: 0.5em;
151
+ margin-bottom: 0.2em;
152
+ }
153
+
154
+ div.bibliomixed {
155
+ margin: 0.5em 5% 0.5em 1em;
156
+ }
157
+
158
+ div.glossary dt {
159
+ font-weight: bold;
160
+ }
161
+ div.glossary dd p {
162
+ margin-top: 0.2em;
163
+ }
164
+
165
+ dl {
166
+ margin: .8em 0;
167
+ line-height: 1.2;
168
+ }
169
+
170
+ dt {
171
+ margin-top: 0.5em;
172
+ }
173
+
174
+ dt span.term {
175
+ font-style: normal;
176
+ color: navy;
177
+ }
178
+
179
+ div.variablelist dd p {
180
+ margin-top: 0;
181
+ }
182
+
183
+ div.itemizedlist li, div.orderedlist li {
184
+ margin-left: -0.8em;
185
+ margin-top: 0.5em;
186
+ }
187
+
188
+ ul, ol {
189
+ list-style-position: outside;
190
+ }
191
+
192
+ div.sidebar ul, div.sidebar ol {
193
+ margin-left: 2.8em;
194
+ }
195
+
196
+ div.itemizedlist p.title,
197
+ div.orderedlist p.title,
198
+ div.variablelist p.title
199
+ {
200
+ margin-bottom: -0.8em;
201
+ }
202
+
203
+ div.revhistory table {
204
+ border-collapse: collapse;
205
+ border: none;
206
+ }
207
+ div.revhistory th {
208
+ border: none;
209
+ color: #527bbd;
210
+ font-family: tahoma, verdana, sans-serif;
211
+ }
212
+ div.revhistory td {
213
+ border: 1px solid silver;
214
+ }
215
+
216
+ /* Keep TOC and index lines close together. */
217
+ div.toc dl, div.toc dt,
218
+ div.list-of-figures dl, div.list-of-figures dt,
219
+ div.list-of-tables dl, div.list-of-tables dt,
220
+ div.indexdiv dl, div.indexdiv dt
221
+ {
222
+ line-height: normal;
223
+ margin-top: 0;
224
+ margin-bottom: 0;
225
+ }
226
+
227
+ /*
228
+ Table styling does not work because of overriding attributes in
229
+ generated HTML.
230
+ */
231
+ div.table table,
232
+ div.informaltable table
233
+ {
234
+ margin-left: 0;
235
+ margin-right: 5%;
236
+ margin-bottom: 0.8em;
237
+ }
238
+ div.informaltable table
239
+ {
240
+ margin-top: 0.4em
241
+ }
242
+ div.table thead,
243
+ div.table tfoot,
244
+ div.table tbody,
245
+ div.informaltable thead,
246
+ div.informaltable tfoot,
247
+ div.informaltable tbody
248
+ {
249
+ /* No effect in IE6. */
250
+ border-top: 3px solid #527bbd;
251
+ border-bottom: 3px solid #527bbd;
252
+ }
253
+ div.table thead, div.table tfoot,
254
+ div.informaltable thead, div.informaltable tfoot
255
+ {
256
+ font-weight: bold;
257
+ }
258
+
259
+ div.mediaobject img {
260
+ margin-bottom: 0.8em;
261
+ }
262
+ div.figure p.title,
263
+ div.table p.title
264
+ {
265
+ margin-top: 1em;
266
+ margin-bottom: 0.4em;
267
+ }
268
+
269
+ div.calloutlist p
270
+ {
271
+ margin-top: 0em;
272
+ margin-bottom: 0.4em;
273
+ }
274
+
275
+ a img {
276
+ border-style: none;
277
+ }
278
+
279
+ @media print {
280
+ div.navheader, div.navfooter { display: none; }
281
+ }
282
+
283
+ span.aqua { color: aqua; }
284
+ span.black { color: black; }
285
+ span.blue { color: blue; }
286
+ span.fuchsia { color: fuchsia; }
287
+ span.gray { color: gray; }
288
+ span.green { color: green; }
289
+ span.lime { color: lime; }
290
+ span.maroon { color: maroon; }
291
+ span.navy { color: navy; }
292
+ span.olive { color: olive; }
293
+ span.purple { color: purple; }
294
+ span.red { color: red; }
295
+ span.silver { color: silver; }
296
+ span.teal { color: teal; }
297
+ span.white { color: white; }
298
+ span.yellow { color: yellow; }
299
+
300
+ span.aqua-background { background: aqua; }
301
+ span.black-background { background: black; }
302
+ span.blue-background { background: blue; }
303
+ span.fuchsia-background { background: fuchsia; }
304
+ span.gray-background { background: gray; }
305
+ span.green-background { background: green; }
306
+ span.lime-background { background: lime; }
307
+ span.maroon-background { background: maroon; }
308
+ span.navy-background { background: navy; }
309
+ span.olive-background { background: olive; }
310
+ span.purple-background { background: purple; }
311
+ span.red-background { background: red; }
312
+ span.silver-background { background: silver; }
313
+ span.teal-background { background: teal; }
314
+ span.white-background { background: white; }
315
+ span.yellow-background { background: yellow; }
316
+
317
+ span.big { font-size: 2em; }
318
+ span.small { font-size: 0.6em; }
319
+
320
+ span.underline { text-decoration: underline; }
321
+ span.overline { text-decoration: overline; }
322
+ span.line-through { text-decoration: line-through; }
@@ -12,7 +12,7 @@ module Stickler
12
12
 
13
13
  MAJOR = 2
14
14
  MINOR = 1
15
- BUILD = 3
15
+ BUILD = 4
16
16
 
17
17
  def self.to_ary
18
18
  [ MAJOR, MINOR, BUILD ]
@@ -0,0 +1,322 @@
1
+ /*
2
+ CSS stylesheet for XHTML produced by DocBook XSL stylesheets.
3
+ Tested with XSL stylesheets 1.61.2, 1.67.2
4
+ */
5
+
6
+ span.strong {
7
+ font-weight: bold;
8
+ }
9
+
10
+ body blockquote {
11
+ margin-top: .75em;
12
+ line-height: 1.5;
13
+ margin-bottom: .75em;
14
+ }
15
+
16
+ html body {
17
+ margin: 1em 5% 1em 5%;
18
+ line-height: 1.2;
19
+ }
20
+
21
+ body div {
22
+ margin: 0;
23
+ }
24
+
25
+ h1, h2, h3, h4, h5, h6
26
+ {
27
+ color: #527bbd;
28
+ font-family: tahoma, verdana, sans-serif;
29
+ }
30
+
31
+ div.toc p:first-child,
32
+ div.list-of-figures p:first-child,
33
+ div.list-of-tables p:first-child,
34
+ div.list-of-examples p:first-child,
35
+ div.example p.title,
36
+ div.sidebar p.title
37
+ {
38
+ font-weight: bold;
39
+ color: #527bbd;
40
+ font-family: tahoma, verdana, sans-serif;
41
+ margin-bottom: 0.2em;
42
+ }
43
+
44
+ body h1 {
45
+ margin: .0em 0 0 -4%;
46
+ line-height: 1.3;
47
+ border-bottom: 2px solid silver;
48
+ }
49
+
50
+ body h2 {
51
+ margin: 0.5em 0 0 -4%;
52
+ line-height: 1.3;
53
+ border-bottom: 2px solid silver;
54
+ }
55
+
56
+ body h3 {
57
+ margin: .8em 0 0 -3%;
58
+ line-height: 1.3;
59
+ }
60
+
61
+ body h4 {
62
+ margin: .8em 0 0 -3%;
63
+ line-height: 1.3;
64
+ }
65
+
66
+ body h5 {
67
+ margin: .8em 0 0 -2%;
68
+ line-height: 1.3;
69
+ }
70
+
71
+ body h6 {
72
+ margin: .8em 0 0 -1%;
73
+ line-height: 1.3;
74
+ }
75
+
76
+ body hr {
77
+ border: none; /* Broken on IE6 */
78
+ }
79
+ div.footnotes hr {
80
+ border: 1px solid silver;
81
+ }
82
+
83
+ div.navheader th, div.navheader td, div.navfooter td {
84
+ font-family: sans-serif;
85
+ font-size: 0.9em;
86
+ font-weight: bold;
87
+ color: #527bbd;
88
+ }
89
+ div.navheader img, div.navfooter img {
90
+ border-style: none;
91
+ }
92
+ div.navheader a, div.navfooter a {
93
+ font-weight: normal;
94
+ }
95
+ div.navfooter hr {
96
+ border: 1px solid silver;
97
+ }
98
+
99
+ body td {
100
+ line-height: 1.2
101
+ }
102
+
103
+ body th {
104
+ line-height: 1.2;
105
+ }
106
+
107
+ ol {
108
+ line-height: 1.2;
109
+ }
110
+
111
+ ul, body dir, body menu {
112
+ line-height: 1.2;
113
+ }
114
+
115
+ html {
116
+ margin: 0;
117
+ padding: 0;
118
+ }
119
+
120
+ body h1, body h2, body h3, body h4, body h5, body h6 {
121
+ margin-left: 0
122
+ }
123
+
124
+ body pre {
125
+ margin: 0.5em 10% 0.5em 1em;
126
+ line-height: 1.0;
127
+ color: navy;
128
+ }
129
+
130
+ tt.literal, code.literal {
131
+ color: navy;
132
+ }
133
+
134
+ .programlisting, .screen {
135
+ border: 1px solid silver;
136
+ background: #f4f4f4;
137
+ margin: 0.5em 10% 0.5em 0;
138
+ padding: 0.5em 1em;
139
+ }
140
+
141
+ div.sidebar {
142
+ background: #ffffee;
143
+ margin: 1.0em 10% 0.5em 0;
144
+ padding: 0.5em 1em;
145
+ border: 1px solid silver;
146
+ }
147
+ div.sidebar * { padding: 0; }
148
+ div.sidebar div { margin: 0; }
149
+ div.sidebar p.title {
150
+ margin-top: 0.5em;
151
+ margin-bottom: 0.2em;
152
+ }
153
+
154
+ div.bibliomixed {
155
+ margin: 0.5em 5% 0.5em 1em;
156
+ }
157
+
158
+ div.glossary dt {
159
+ font-weight: bold;
160
+ }
161
+ div.glossary dd p {
162
+ margin-top: 0.2em;
163
+ }
164
+
165
+ dl {
166
+ margin: .8em 0;
167
+ line-height: 1.2;
168
+ }
169
+
170
+ dt {
171
+ margin-top: 0.5em;
172
+ }
173
+
174
+ dt span.term {
175
+ font-style: normal;
176
+ color: navy;
177
+ }
178
+
179
+ div.variablelist dd p {
180
+ margin-top: 0;
181
+ }
182
+
183
+ div.itemizedlist li, div.orderedlist li {
184
+ margin-left: -0.8em;
185
+ margin-top: 0.5em;
186
+ }
187
+
188
+ ul, ol {
189
+ list-style-position: outside;
190
+ }
191
+
192
+ div.sidebar ul, div.sidebar ol {
193
+ margin-left: 2.8em;
194
+ }
195
+
196
+ div.itemizedlist p.title,
197
+ div.orderedlist p.title,
198
+ div.variablelist p.title
199
+ {
200
+ margin-bottom: -0.8em;
201
+ }
202
+
203
+ div.revhistory table {
204
+ border-collapse: collapse;
205
+ border: none;
206
+ }
207
+ div.revhistory th {
208
+ border: none;
209
+ color: #527bbd;
210
+ font-family: tahoma, verdana, sans-serif;
211
+ }
212
+ div.revhistory td {
213
+ border: 1px solid silver;
214
+ }
215
+
216
+ /* Keep TOC and index lines close together. */
217
+ div.toc dl, div.toc dt,
218
+ div.list-of-figures dl, div.list-of-figures dt,
219
+ div.list-of-tables dl, div.list-of-tables dt,
220
+ div.indexdiv dl, div.indexdiv dt
221
+ {
222
+ line-height: normal;
223
+ margin-top: 0;
224
+ margin-bottom: 0;
225
+ }
226
+
227
+ /*
228
+ Table styling does not work because of overriding attributes in
229
+ generated HTML.
230
+ */
231
+ div.table table,
232
+ div.informaltable table
233
+ {
234
+ margin-left: 0;
235
+ margin-right: 5%;
236
+ margin-bottom: 0.8em;
237
+ }
238
+ div.informaltable table
239
+ {
240
+ margin-top: 0.4em
241
+ }
242
+ div.table thead,
243
+ div.table tfoot,
244
+ div.table tbody,
245
+ div.informaltable thead,
246
+ div.informaltable tfoot,
247
+ div.informaltable tbody
248
+ {
249
+ /* No effect in IE6. */
250
+ border-top: 3px solid #527bbd;
251
+ border-bottom: 3px solid #527bbd;
252
+ }
253
+ div.table thead, div.table tfoot,
254
+ div.informaltable thead, div.informaltable tfoot
255
+ {
256
+ font-weight: bold;
257
+ }
258
+
259
+ div.mediaobject img {
260
+ margin-bottom: 0.8em;
261
+ }
262
+ div.figure p.title,
263
+ div.table p.title
264
+ {
265
+ margin-top: 1em;
266
+ margin-bottom: 0.4em;
267
+ }
268
+
269
+ div.calloutlist p
270
+ {
271
+ margin-top: 0em;
272
+ margin-bottom: 0.4em;
273
+ }
274
+
275
+ a img {
276
+ border-style: none;
277
+ }
278
+
279
+ @media print {
280
+ div.navheader, div.navfooter { display: none; }
281
+ }
282
+
283
+ span.aqua { color: aqua; }
284
+ span.black { color: black; }
285
+ span.blue { color: blue; }
286
+ span.fuchsia { color: fuchsia; }
287
+ span.gray { color: gray; }
288
+ span.green { color: green; }
289
+ span.lime { color: lime; }
290
+ span.maroon { color: maroon; }
291
+ span.navy { color: navy; }
292
+ span.olive { color: olive; }
293
+ span.purple { color: purple; }
294
+ span.red { color: red; }
295
+ span.silver { color: silver; }
296
+ span.teal { color: teal; }
297
+ span.white { color: white; }
298
+ span.yellow { color: yellow; }
299
+
300
+ span.aqua-background { background: aqua; }
301
+ span.black-background { background: black; }
302
+ span.blue-background { background: blue; }
303
+ span.fuchsia-background { background: fuchsia; }
304
+ span.gray-background { background: gray; }
305
+ span.green-background { background: green; }
306
+ span.lime-background { background: lime; }
307
+ span.maroon-background { background: maroon; }
308
+ span.navy-background { background: navy; }
309
+ span.olive-background { background: olive; }
310
+ span.purple-background { background: purple; }
311
+ span.red-background { background: red; }
312
+ span.silver-background { background: silver; }
313
+ span.teal-background { background: teal; }
314
+ span.white-background { background: white; }
315
+ span.yellow-background { background: yellow; }
316
+
317
+ span.big { font-size: 2em; }
318
+ span.small { font-size: 0.6em; }
319
+
320
+ span.underline { text-decoration: underline; }
321
+ span.overline { text-decoration: overline; }
322
+ span.line-through { text-decoration: line-through; }
metadata CHANGED
@@ -1,149 +1,216 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: stickler
3
- version: !ruby/object:Gem::Version
4
- version: 2.1.3
3
+ version: !ruby/object:Gem::Version
4
+ hash: 3
5
5
  prerelease:
6
+ segments:
7
+ - 2
8
+ - 1
9
+ - 4
10
+ version: 2.1.4
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - Jeremy Hinegardner
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
- date: 2011-07-24 00:00:00.000000000Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2011-09-10 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
15
21
  name: sinatra
16
- requirement: &2158143400 !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
17
24
  none: false
18
- requirements:
25
+ requirements:
19
26
  - - ~>
20
- - !ruby/object:Gem::Version
21
- version: 1.2.1
27
+ - !ruby/object:Gem::Version
28
+ hash: 19
29
+ segments:
30
+ - 1
31
+ - 2
32
+ - 6
33
+ version: 1.2.6
22
34
  type: :runtime
23
- prerelease: false
24
- version_requirements: *2158143400
25
- - !ruby/object:Gem::Dependency
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
26
37
  name: addressable
27
- requirement: &2158142480 !ruby/object:Gem::Requirement
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
28
40
  none: false
29
- requirements:
41
+ requirements:
30
42
  - - ~>
31
- - !ruby/object:Gem::Version
43
+ - !ruby/object:Gem::Version
44
+ hash: 15
45
+ segments:
46
+ - 2
47
+ - 2
48
+ - 4
32
49
  version: 2.2.4
33
50
  type: :runtime
34
- prerelease: false
35
- version_requirements: *2158142480
36
- - !ruby/object:Gem::Dependency
51
+ version_requirements: *id002
52
+ - !ruby/object:Gem::Dependency
37
53
  name: excon
38
- requirement: &2158141660 !ruby/object:Gem::Requirement
54
+ prerelease: false
55
+ requirement: &id003 !ruby/object:Gem::Requirement
39
56
  none: false
40
- requirements:
57
+ requirements:
41
58
  - - ~>
42
- - !ruby/object:Gem::Version
43
- version: 0.6.5
59
+ - !ruby/object:Gem::Version
60
+ hash: 11
61
+ segments:
62
+ - 0
63
+ - 6
64
+ - 6
65
+ version: 0.6.6
44
66
  type: :runtime
45
- prerelease: false
46
- version_requirements: *2158141660
47
- - !ruby/object:Gem::Dependency
67
+ version_requirements: *id003
68
+ - !ruby/object:Gem::Dependency
48
69
  name: trollop
49
- requirement: &2158140940 !ruby/object:Gem::Requirement
70
+ prerelease: false
71
+ requirement: &id004 !ruby/object:Gem::Requirement
50
72
  none: false
51
- requirements:
73
+ requirements:
52
74
  - - ~>
53
- - !ruby/object:Gem::Version
75
+ - !ruby/object:Gem::Version
76
+ hash: 83
77
+ segments:
78
+ - 1
79
+ - 16
80
+ - 2
54
81
  version: 1.16.2
55
82
  type: :runtime
56
- prerelease: false
57
- version_requirements: *2158140940
58
- - !ruby/object:Gem::Dependency
83
+ version_requirements: *id004
84
+ - !ruby/object:Gem::Dependency
59
85
  name: logging
60
- requirement: &2158140300 !ruby/object:Gem::Requirement
86
+ prerelease: false
87
+ requirement: &id005 !ruby/object:Gem::Requirement
61
88
  none: false
62
- requirements:
89
+ requirements:
63
90
  - - ~>
64
- - !ruby/object:Gem::Version
65
- version: 1.5.0
91
+ - !ruby/object:Gem::Version
92
+ hash: 13
93
+ segments:
94
+ - 1
95
+ - 6
96
+ - 1
97
+ version: 1.6.1
66
98
  type: :runtime
67
- prerelease: false
68
- version_requirements: *2158140300
69
- - !ruby/object:Gem::Dependency
99
+ version_requirements: *id005
100
+ - !ruby/object:Gem::Dependency
70
101
  name: rake
71
- requirement: &2158139480 !ruby/object:Gem::Requirement
102
+ prerelease: false
103
+ requirement: &id006 !ruby/object:Gem::Requirement
72
104
  none: false
73
- requirements:
105
+ requirements:
74
106
  - - ~>
75
- - !ruby/object:Gem::Version
107
+ - !ruby/object:Gem::Version
108
+ hash: 63
109
+ segments:
110
+ - 0
111
+ - 9
112
+ - 2
76
113
  version: 0.9.2
77
114
  type: :runtime
78
- prerelease: false
79
- version_requirements: *2158139480
80
- - !ruby/object:Gem::Dependency
115
+ version_requirements: *id006
116
+ - !ruby/object:Gem::Dependency
81
117
  name: bones
82
- requirement: &2158138500 !ruby/object:Gem::Requirement
118
+ prerelease: false
119
+ requirement: &id007 !ruby/object:Gem::Requirement
83
120
  none: false
84
- requirements:
121
+ requirements:
85
122
  - - ~>
86
- - !ruby/object:Gem::Version
87
- version: 3.7.0
123
+ - !ruby/object:Gem::Version
124
+ hash: 25
125
+ segments:
126
+ - 3
127
+ - 7
128
+ - 1
129
+ version: 3.7.1
88
130
  type: :development
89
- prerelease: false
90
- version_requirements: *2158138500
91
- - !ruby/object:Gem::Dependency
131
+ version_requirements: *id007
132
+ - !ruby/object:Gem::Dependency
92
133
  name: rack-test
93
- requirement: &2158137600 !ruby/object:Gem::Requirement
134
+ prerelease: false
135
+ requirement: &id008 !ruby/object:Gem::Requirement
94
136
  none: false
95
- requirements:
137
+ requirements:
96
138
  - - ~>
97
- - !ruby/object:Gem::Version
98
- version: 0.6.0
139
+ - !ruby/object:Gem::Version
140
+ hash: 5
141
+ segments:
142
+ - 0
143
+ - 6
144
+ - 1
145
+ version: 0.6.1
99
146
  type: :development
100
- prerelease: false
101
- version_requirements: *2158137600
102
- - !ruby/object:Gem::Dependency
147
+ version_requirements: *id008
148
+ - !ruby/object:Gem::Dependency
103
149
  name: bones-extras
104
- requirement: &2158136260 !ruby/object:Gem::Requirement
150
+ prerelease: false
151
+ requirement: &id009 !ruby/object:Gem::Requirement
105
152
  none: false
106
- requirements:
153
+ requirements:
107
154
  - - ~>
108
- - !ruby/object:Gem::Version
155
+ - !ruby/object:Gem::Version
156
+ hash: 27
157
+ segments:
158
+ - 1
159
+ - 3
160
+ - 0
109
161
  version: 1.3.0
110
162
  type: :development
111
- prerelease: false
112
- version_requirements: *2158136260
113
- - !ruby/object:Gem::Dependency
163
+ version_requirements: *id009
164
+ - !ruby/object:Gem::Dependency
114
165
  name: builder
115
- requirement: &2158135360 !ruby/object:Gem::Requirement
166
+ prerelease: false
167
+ requirement: &id010 !ruby/object:Gem::Requirement
116
168
  none: false
117
- requirements:
169
+ requirements:
118
170
  - - ~>
119
- - !ruby/object:Gem::Version
171
+ - !ruby/object:Gem::Version
172
+ hash: 7
173
+ segments:
174
+ - 3
175
+ - 0
176
+ - 0
120
177
  version: 3.0.0
121
178
  type: :development
122
- prerelease: false
123
- version_requirements: *2158135360
124
- - !ruby/object:Gem::Dependency
179
+ version_requirements: *id010
180
+ - !ruby/object:Gem::Dependency
125
181
  name: rspec
126
- requirement: &2158134380 !ruby/object:Gem::Requirement
182
+ prerelease: false
183
+ requirement: &id011 !ruby/object:Gem::Requirement
127
184
  none: false
128
- requirements:
185
+ requirements:
129
186
  - - ~>
130
- - !ruby/object:Gem::Version
187
+ - !ruby/object:Gem::Version
188
+ hash: 23
189
+ segments:
190
+ - 2
191
+ - 6
192
+ - 0
131
193
  version: 2.6.0
132
194
  type: :development
133
- prerelease: false
134
- version_requirements: *2158134380
135
- description: ! "Stickler is a tool to organize and maintain an internal gem repository.\nPrimarily,
136
- you would want to use Stickler if:\n\n1. You have proprietary gems that you want
137
- to have available via a gem server so \n you may +gem install+ them.\n2. You would
138
- like to have a local mirror of third party gems from either \n http://rubygems.org
139
- or some other gem server.\n3. You want both (1) and (2) in the same server.\n"
195
+ version_requirements: *id011
196
+ description: |
197
+ Stickler is a tool to organize and maintain an internal gem repository.
198
+ Primarily, you would want to use Stickler if:
199
+
200
+ 1. You have proprietary gems that you want to have available via a gem server so
201
+ you may +gem install+ them.
202
+ 2. You would like to have a local mirror of third party gems from either
203
+ http://rubygems.org or some other gem server.
204
+ 3. You want both (1) and (2) in the same server.
205
+
140
206
  email: jeremy@hinegardner.org
141
- executables:
207
+ executables:
142
208
  - stickler
143
209
  - stickler-passenger-config
144
210
  - stickler-server
145
211
  extensions: []
146
- extra_rdoc_files:
212
+
213
+ extra_rdoc_files:
147
214
  - bin/stickler
148
215
  - bin/stickler-passenger-config
149
216
  - bin/stickler-server
@@ -156,14 +223,15 @@ extra_rdoc_files:
156
223
  - lib/stickler/server/public/js/modernizr-1.5.min.js
157
224
  - lib/stickler/server/views/index.erb
158
225
  - lib/stickler/server/views/layout.erb
159
- files:
226
+ files:
160
227
  - .gitignore
161
- - .rvmrc
162
228
  - HISTORY.asciidoc
163
229
  - LICENSE
164
230
  - README.asciidoc
165
231
  - Rakefile
166
232
  - TODO.asciidoc
233
+ - asciidoc-output/docbook-xsl.css
234
+ - asciidoc-output/man/docbook-xsl.css
167
235
  - bin/stickler
168
236
  - bin/stickler-passenger-config
169
237
  - bin/stickler-server
@@ -214,6 +282,7 @@ files:
214
282
  - lib/stickler/spec_lite.rb
215
283
  - lib/stickler/version.rb
216
284
  - man/asciidoc.conf
285
+ - man/docbook-xsl.css
217
286
  - man/stickler-passenger-config.1
218
287
  - man/stickler-passenger-config.asciidoc
219
288
  - man/stickler-server.1
@@ -253,28 +322,37 @@ files:
253
322
  - work/mirror/specifications/rails-3.0.3.gemspec
254
323
  homepage: http://www.copiousfreetime.org/projects/stickler
255
324
  licenses: []
325
+
256
326
  post_install_message:
257
- rdoc_options:
327
+ rdoc_options:
258
328
  - --main
259
329
  - README.asciidoc
260
- require_paths:
330
+ require_paths:
261
331
  - lib
262
- required_ruby_version: !ruby/object:Gem::Requirement
332
+ required_ruby_version: !ruby/object:Gem::Requirement
263
333
  none: false
264
- requirements:
265
- - - ! '>='
266
- - !ruby/object:Gem::Version
267
- version: '0'
268
- required_rubygems_version: !ruby/object:Gem::Requirement
334
+ requirements:
335
+ - - ">="
336
+ - !ruby/object:Gem::Version
337
+ hash: 3
338
+ segments:
339
+ - 0
340
+ version: "0"
341
+ required_rubygems_version: !ruby/object:Gem::Requirement
269
342
  none: false
270
- requirements:
271
- - - ! '>='
272
- - !ruby/object:Gem::Version
273
- version: '0'
343
+ requirements:
344
+ - - ">="
345
+ - !ruby/object:Gem::Version
346
+ hash: 3
347
+ segments:
348
+ - 0
349
+ version: "0"
274
350
  requirements: []
351
+
275
352
  rubyforge_project: stickler
276
- rubygems_version: 1.8.5
353
+ rubygems_version: 1.8.7
277
354
  signing_key:
278
355
  specification_version: 3
279
356
  summary: Stickler is a tool to organize and maintain an internal gem repository.
280
357
  test_files: []
358
+
data/.rvmrc DELETED
@@ -1 +0,0 @@
1
- rvm use ruby-1.9.2@stickler