rroonga 1.0.5 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/NEWS.ja.rdoc +12 -0
  2. data/NEWS.rdoc +12 -0
  3. data/README.ja.rdoc +3 -2
  4. data/README.rdoc +2 -1
  5. data/Rakefile +2 -1
  6. data/ext/groonga/extconf.rb +6 -6
  7. data/ext/groonga/rb-grn-accessor.c +1 -1
  8. data/ext/groonga/rb-grn-array.c +1 -1
  9. data/ext/groonga/rb-grn-column.c +4 -4
  10. data/ext/groonga/rb-grn-context.c +3 -3
  11. data/ext/groonga/rb-grn-database.c +3 -3
  12. data/ext/groonga/rb-grn-expression.c +3 -3
  13. data/ext/groonga/rb-grn-hash.c +2 -2
  14. data/ext/groonga/rb-grn-index-column.c +2 -2
  15. data/ext/groonga/rb-grn-logger.c +2 -2
  16. data/ext/groonga/rb-grn-object.c +14 -14
  17. data/ext/groonga/rb-grn-patricia-trie.c +5 -5
  18. data/ext/groonga/rb-grn-procedure.c +1 -1
  19. data/ext/groonga/rb-grn-query.c +3 -3
  20. data/ext/groonga/rb-grn-snippet.c +3 -3
  21. data/ext/groonga/rb-grn-table-cursor.c +1 -1
  22. data/ext/groonga/rb-grn-table-key-support.c +5 -5
  23. data/ext/groonga/rb-grn-table.c +36 -40
  24. data/ext/groonga/rb-grn-type.c +1 -1
  25. data/ext/groonga/rb-grn-utils.c +16 -16
  26. data/ext/groonga/rb-grn-variable.c +1 -1
  27. data/ext/groonga/rb-grn-view-accessor.c +1 -1
  28. data/ext/groonga/rb-grn-view.c +1 -1
  29. data/ext/groonga/rb-grn.h +12 -16
  30. data/ext/groonga/rb-groonga.c +2 -2
  31. data/extconf.rb +9 -3
  32. data/html/index.html +7 -3
  33. data/test-unit/COPYING +56 -0
  34. data/test-unit/GPL +340 -0
  35. data/test-unit/PSFL +271 -0
  36. data/test-unit/Rakefile +18 -5
  37. data/test-unit/html/bar.svg +153 -0
  38. data/test-unit/html/developer.svg +469 -0
  39. data/test-unit/html/favicon.ico +0 -0
  40. data/test-unit/html/favicon.svg +82 -0
  41. data/test-unit/html/heading-mark.svg +393 -0
  42. data/test-unit/html/index.html +235 -13
  43. data/test-unit/html/index.html.ja +258 -15
  44. data/test-unit/html/install.svg +636 -0
  45. data/test-unit/html/logo.svg +483 -0
  46. data/test-unit/html/test-unit.css +339 -0
  47. data/test-unit/html/tutorial.svg +559 -0
  48. data/test-unit/lib/test/unit/assertions.rb +115 -11
  49. data/test-unit/lib/test/unit/autorunner.rb +5 -2
  50. data/test-unit/lib/test/unit/collector/load.rb +1 -1
  51. data/test-unit/lib/test/unit/color-scheme.rb +6 -2
  52. data/test-unit/lib/test/unit/diff.rb +17 -1
  53. data/test-unit/lib/test/unit/testcase.rb +7 -0
  54. data/test-unit/lib/test/unit/testresult.rb +34 -2
  55. data/test-unit/lib/test/unit/ui/console/testrunner.rb +9 -45
  56. data/test-unit/lib/test/unit/ui/tap/testrunner.rb +2 -12
  57. data/test-unit/lib/test/unit/ui/testrunner.rb +25 -0
  58. data/test-unit/lib/test/unit/util/backtracefilter.rb +1 -0
  59. data/test-unit/lib/test/unit/util/output.rb +31 -0
  60. data/test-unit/lib/test/unit/version.rb +1 -1
  61. data/test-unit/lib/test/unit.rb +6 -1
  62. data/test-unit/test/test-color-scheme.rb +4 -2
  63. data/test-unit/test/test_assertions.rb +51 -5
  64. data/test-unit/test/ui/test_tap.rb +33 -0
  65. data/test-unit/test/util/test-output.rb +11 -0
  66. data/test-unit-notify/Rakefile +47 -0
  67. data/test-unit-notify/lib/test/unit/notify.rb +104 -0
  68. metadata +40 -9
  69. data/ext/groonga/mkmf.log +0 -99
  70. data/test-unit/html/classic.html +0 -15
@@ -0,0 +1,339 @@
1
+ html,
2
+ body
3
+ {
4
+ margin: 0px;
5
+ padding: 0px;
6
+ color: black !important;
7
+ background-color: white !important;
8
+ }
9
+
10
+ a:link
11
+ {
12
+ color: #f57900;
13
+ }
14
+
15
+ a:visited
16
+ {
17
+ color: #ce5c00;
18
+ }
19
+
20
+ div.header
21
+ {
22
+ position: relative;
23
+ margin: 0px;
24
+ padding: 0px;
25
+ }
26
+
27
+ div.header div.title
28
+ {
29
+ background: url(logo.png) no-repeat;
30
+ font-family: sans-serif;
31
+ font-size: 12px;
32
+ font-weight: bold;
33
+ text-shadow: 0.1em 0.1em 0.1em rgb(200, 200, 200);
34
+ margin-top: 20px;
35
+ margin-left: 50px;
36
+ margin-right: 210px;
37
+ height: 65px;
38
+ }
39
+
40
+ div.header div.title a,
41
+ div.header div.title a:link,
42
+ div.header div.title a:visited
43
+ {
44
+ color: black;
45
+ text-decoration: none;
46
+ }
47
+
48
+ div.header div.title span
49
+ {
50
+ display: block;
51
+ padding-left: 180px;
52
+ margin-bottom: 2px;
53
+ }
54
+
55
+ div.header div.title span.title
56
+ {
57
+ padding-top: 20px;
58
+ }
59
+
60
+ div.header div.title span.title-separator
61
+ {
62
+ display: none;
63
+ }
64
+
65
+ div.header div.title span.title-project
66
+ {
67
+ padding-bottom: 20px;
68
+ }
69
+
70
+ ul.other-languages
71
+ {
72
+ position: absolute;
73
+ top: 0px;
74
+ right: 50px;
75
+ padding: 0px;
76
+ margin: 0px;
77
+ }
78
+
79
+ ul.other-languages li
80
+ {
81
+ display: block;
82
+ float: left;
83
+ margin-left: 10px;
84
+ }
85
+
86
+ ul.other-languages li a
87
+ {
88
+ display: block;
89
+ height: 11px;
90
+ width: 16px;
91
+ text-indent: -100000px;
92
+ outline: none;
93
+ }
94
+
95
+ ul.other-languages li#other-language-english
96
+ {
97
+ background: url(us.png) no-repeat;
98
+ }
99
+
100
+ ul.other-languages li#other-language-japanese
101
+ {
102
+ background: url(jp.png) no-repeat;
103
+ }
104
+
105
+ ul.menu
106
+ {
107
+ background: url(bar.png) repeat-x;
108
+ height: 38px;
109
+ padding: 0;
110
+ margin: 0;
111
+ padding-top: 12px;
112
+ padding-left: 50px;
113
+ padding-bottom: 0px;
114
+ margin-top: 16px;
115
+ margin-left: 0px;
116
+ margin-bottom: 0px;
117
+ font-family: sans;
118
+ font-weight: bold;
119
+ font-size: 16px;
120
+ line-height: 100% !important;
121
+ }
122
+
123
+ ul.menu li
124
+ {
125
+ display: inline;
126
+ padding: 0;
127
+ margin: 0;
128
+ margin-right: 10px;
129
+ padding-left: 0px;
130
+ }
131
+
132
+ ul.menu li a
133
+ {
134
+ color: #fed08e;
135
+ text-decoration: none;
136
+ padding-left: 20px;
137
+ }
138
+
139
+ ul.menu li a:hover
140
+ {
141
+ text-decoration: underline;
142
+ }
143
+
144
+ ul.menu li a:visited
145
+ {
146
+ color: #ffb84f;
147
+ }
148
+
149
+ ul.menu li#menu-reference
150
+ {
151
+ background: url(reference.png) no-repeat;
152
+ }
153
+
154
+ ul.menu li#menu-tutorial
155
+ {
156
+ background: url(tutorial.png) no-repeat;
157
+ }
158
+
159
+ ul.menu li#menu-install
160
+ {
161
+ background: url(install.png) no-repeat;
162
+ }
163
+
164
+ ul.menu li#menu-developer
165
+ {
166
+ background: url(developer.png) no-repeat;
167
+ }
168
+
169
+ div.content
170
+ {
171
+ position: relative;
172
+ margin-left: 50px;
173
+ margin-right: 50px;
174
+ }
175
+
176
+ div.main
177
+ {
178
+ margin-right: 170px;
179
+ }
180
+
181
+ div.main p
182
+ {
183
+ line-height: 150%;
184
+ }
185
+
186
+ div.main h2,
187
+ div.day h3
188
+ {
189
+ margin-left: -45px;
190
+ text-indent: 45px;
191
+ height: 36px;
192
+ background: url(heading-mark.png) no-repeat;
193
+ clear: both;
194
+ }
195
+
196
+ div.sidebar
197
+ {
198
+ clear: both;
199
+ position: absolute;
200
+ top: 0px;
201
+ right: 0px;
202
+ width: 150px;
203
+ background-color: white;
204
+ padding-left: 10px;
205
+ border-left: solid 1px black;
206
+ height: 100%;
207
+ }
208
+
209
+ div.sidebar h2
210
+ {
211
+ font-size: 1em;
212
+ margin: 0px;
213
+ padding: 0px;
214
+ padding-bottom: 5px;
215
+ }
216
+
217
+ div.sidebar ul
218
+ {
219
+ margin: 0px;
220
+ padding: 0px;
221
+ }
222
+
223
+ div.sidebar ul li
224
+ {
225
+ list-style-type: none;
226
+ margin-bottom: 5px;
227
+ }
228
+
229
+ div.sponsors
230
+ {
231
+ border-top: solid black 1px;
232
+ position: relative;
233
+ }
234
+
235
+ div.sponsors p
236
+ {
237
+ margin: 0px;
238
+ }
239
+
240
+ div.sponsors p#sponsor-rubyforge
241
+ {
242
+ position: absolute;
243
+ top: 15px;
244
+ right: 50px;
245
+ }
246
+
247
+ div.sponsors p#sponsor-tango
248
+ {
249
+ position: absolute;
250
+ top: 50px;
251
+ right: 50px;
252
+ }
253
+
254
+ div.sponsors p#sponsor-famfamfam
255
+ {
256
+ position: absolute;
257
+ top: 118px;
258
+ right: 50px;
259
+ padding-bottom: 50px;
260
+ }
261
+
262
+ dt
263
+ {
264
+ margin-bottom: 0.25em;
265
+ }
266
+
267
+ dd
268
+ {
269
+ margin-bottom: 0.5em;
270
+ }
271
+
272
+ pre
273
+ {
274
+ overflow: auto;
275
+ }
276
+
277
+ pre.command,
278
+ pre.code,
279
+ dd
280
+ {
281
+ -moz-border-radius: 5px;
282
+ -webkit-border-radius: 5px;
283
+ border-radius: 5px;
284
+ -moz-box-shadow: 0.2em 0.2em 0.5em rgb(100, 100, 100);
285
+ -webkit-box-shadow: 0.2em 0.2em 0.5em rgb(100, 100, 100);
286
+ box-shadow: 0.2em 0.2em 0.5em rgb(100, 100, 100);
287
+ }
288
+
289
+ pre.command
290
+ {
291
+ color: white;
292
+ background-color: black;
293
+ padding: 5px 10px;
294
+ }
295
+
296
+ pre.code
297
+ {
298
+ border: solid 1px #abf562;
299
+ background: #d8ffb2;
300
+ padding: 5px 10px;
301
+ }
302
+
303
+ img.eye-catch
304
+ {
305
+ float: right;
306
+ }
307
+
308
+ dl.feature-list
309
+ {
310
+ clear: both;
311
+ }
312
+
313
+ dl.feature-list dd
314
+ {
315
+ border: solid 1px #729fcf;
316
+ background: #e6f3ff;
317
+ padding: 5px 10px;
318
+ }
319
+
320
+ /* for RDoc */
321
+ body.indexpage,
322
+ body.class,
323
+ body.module,
324
+ body.file
325
+ {
326
+ margin: 0 !important;
327
+ }
328
+
329
+ body.indexpage div.content
330
+ {
331
+ margin: 1em 3em !important;
332
+ }
333
+
334
+ body.class div.content,
335
+ body.module div.content,
336
+ body.file div.content
337
+ {
338
+ margin: 40px !important;
339
+ }