rroonga 0.9.4-x86-mingw32 → 0.9.5-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/NEWS.ja.rdoc +29 -0
- data/NEWS.rdoc +29 -0
- data/Rakefile +6 -6
- data/ext/groonga/rb-grn-array.c +1 -1
- data/ext/groonga/rb-grn-context.c +15 -28
- data/ext/groonga/rb-grn-exception.c +46 -1
- data/ext/groonga/rb-grn-expression.c +22 -13
- data/ext/groonga/rb-grn-fix-size-column.c +2 -8
- data/ext/groonga/rb-grn-hash.c +8 -1
- data/ext/groonga/rb-grn-object.c +1 -1
- data/ext/groonga/rb-grn-patricia-trie.c +23 -1
- data/ext/groonga/rb-grn-table-key-support.c +22 -0
- data/ext/groonga/rb-grn-table.c +37 -5
- data/ext/groonga/rb-grn-utils.c +20 -2
- data/ext/groonga/rb-grn.h +1 -1
- data/ext/groonga/rb-groonga.c +76 -38
- data/extconf.rb +17 -1
- data/html/developer.html +32 -7
- data/html/footer.html.erb +5 -0
- data/html/heading-mark.svg +393 -0
- data/html/index.html +33 -3
- data/lib/1.8/groonga.so +0 -0
- data/lib/1.9/groonga.so +0 -0
- data/lib/groonga.rb +3 -7
- data/lib/groonga/context.rb +2 -13
- data/lib/groonga/expression-builder.rb +273 -67
- data/lib/groonga/pagination.rb +143 -0
- data/lib/groonga/record.rb +2 -0
- data/lib/groonga/schema.rb +140 -29
- data/pkg/rroonga-0.9.5/NEWS.ja.rdoc +156 -0
- data/pkg/rroonga-0.9.5/NEWS.rdoc +158 -0
- data/pkg/rroonga-0.9.5/README.ja.rdoc +65 -0
- data/pkg/rroonga-0.9.5/README.rdoc +66 -0
- data/pkg/rroonga-0.9.5/text/TUTORIAL.ja.rdoc +394 -0
- data/pkg/rroonga-0.9.5/text/expression.rdoc +285 -0
- data/rroonga-build.rb +2 -2
- data/test-unit/Rakefile +40 -0
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +5 -0
- data/test-unit/html/classic.html +15 -0
- data/test-unit/html/index.html +25 -0
- data/test-unit/html/index.html.ja +27 -0
- data/test-unit/lib/test/unit.rb +323 -0
- data/test-unit/lib/test/unit/assertionfailederror.rb +25 -0
- data/test-unit/lib/test/unit/assertions.rb +1230 -0
- data/test-unit/lib/test/unit/attribute.rb +125 -0
- data/test-unit/lib/test/unit/autorunner.rb +360 -0
- data/test-unit/lib/test/unit/collector.rb +36 -0
- data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
- data/test-unit/lib/test/unit/collector/dir.rb +108 -0
- data/test-unit/lib/test/unit/collector/load.rb +144 -0
- data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
- data/test-unit/lib/test/unit/color-scheme.rb +102 -0
- data/test-unit/lib/test/unit/color.rb +96 -0
- data/test-unit/lib/test/unit/diff.rb +724 -0
- data/test-unit/lib/test/unit/error.rb +130 -0
- data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
- data/test-unit/lib/test/unit/failure.rb +136 -0
- data/test-unit/lib/test/unit/fixture.rb +176 -0
- data/test-unit/lib/test/unit/notification.rb +129 -0
- data/test-unit/lib/test/unit/omission.rb +191 -0
- data/test-unit/lib/test/unit/pending.rb +150 -0
- data/test-unit/lib/test/unit/priority.rb +180 -0
- data/test-unit/lib/test/unit/runner/console.rb +52 -0
- data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
- data/test-unit/lib/test/unit/runner/tap.rb +8 -0
- data/test-unit/lib/test/unit/testcase.rb +476 -0
- data/test-unit/lib/test/unit/testresult.rb +89 -0
- data/test-unit/lib/test/unit/testsuite.rb +110 -0
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +466 -0
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +63 -0
- data/test-unit/lib/test/unit/ui/tap/testrunner.rb +92 -0
- data/test-unit/lib/test/unit/ui/testrunner.rb +28 -0
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/test-unit/lib/test/unit/util/backtracefilter.rb +41 -0
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/util/observable.rb +90 -0
- data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
- data/test-unit/lib/test/unit/version.rb +7 -0
- data/test-unit/sample/adder.rb +13 -0
- data/test-unit/sample/subtracter.rb +12 -0
- data/test-unit/sample/test_adder.rb +20 -0
- data/test-unit/sample/test_subtracter.rb +20 -0
- data/test-unit/sample/test_user.rb +23 -0
- data/test-unit/test/collector/test-descendant.rb +133 -0
- data/test-unit/test/collector/test-load.rb +442 -0
- data/test-unit/test/collector/test_dir.rb +406 -0
- data/test-unit/test/collector/test_objectspace.rb +100 -0
- data/test-unit/test/run-test.rb +15 -0
- data/test-unit/test/test-attribute.rb +86 -0
- data/test-unit/test/test-color-scheme.rb +67 -0
- data/test-unit/test/test-color.rb +47 -0
- data/test-unit/test/test-diff.rb +518 -0
- data/test-unit/test/test-emacs-runner.rb +60 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/test-notification.rb +33 -0
- data/test-unit/test/test-omission.rb +81 -0
- data/test-unit/test/test-pending.rb +70 -0
- data/test-unit/test/test-priority.rb +119 -0
- data/test-unit/test/test-testcase.rb +544 -0
- data/test-unit/test/test_assertions.rb +1151 -0
- data/test-unit/test/test_error.rb +26 -0
- data/test-unit/test/test_failure.rb +33 -0
- data/test-unit/test/test_testresult.rb +113 -0
- data/test-unit/test/test_testsuite.rb +129 -0
- data/test-unit/test/testunit-test-util.rb +14 -0
- data/test-unit/test/ui/test_testrunmediator.rb +20 -0
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test-unit/test/util/test_backtracefilter.rb +41 -0
- data/test-unit/test/util/test_observable.rb +102 -0
- data/test-unit/test/util/test_procwrapper.rb +36 -0
- data/test/groonga-test-utils.rb +3 -2
- data/test/run-test.rb +14 -2
- data/test/test-column.rb +7 -7
- data/test/test-context-select.rb +34 -11
- data/test/test-exception.rb +3 -0
- data/test/test-expression-builder.rb +11 -0
- data/test/test-expression.rb +3 -6
- data/test/test-gqtp.rb +3 -5
- data/test/test-pagination.rb +249 -0
- data/test/test-record.rb +36 -8
- data/test/test-remote.rb +11 -4
- data/test/test-schema-create-table.rb +251 -0
- data/test/test-schema.rb +4 -24
- data/test/test-table-offset-and-limit.rb +3 -5
- data/test/test-table-select-mecab.rb +80 -0
- data/test/test-table-select-weight.rb +104 -0
- data/test/test-table.rb +22 -4
- data/test/test-version.rb +1 -1
- data/text/TUTORIAL.ja.rdoc +2 -0
- data/text/expression.rdoc +1 -0
- data/vendor/local/bin/grntest.exe +0 -0
- data/vendor/local/bin/groonga.exe +0 -0
- data/vendor/local/bin/libgroonga-0.dll +0 -0
- data/vendor/local/include/{groonga.h → groonga/groonga.h} +93 -32
- data/vendor/local/lib/groonga/modules/functions/cast.dll +0 -0
- data/vendor/local/lib/groonga/modules/functions/cast.la +41 -0
- data/vendor/local/lib/pkgconfig/groonga.pc +12 -0
- data/vendor/local/share/groonga/admin_html/css/admin.css +104 -0
- data/vendor/local/share/groonga/admin_html/css/ui-lightness/jquery-ui-1.8.1.custom.css +486 -0
- data/vendor/local/share/groonga/admin_html/index.html +1355 -0
- data/vendor/local/share/groonga/admin_html/js/jquery-1.4.2.min.js +154 -0
- data/vendor/local/share/groonga/admin_html/js/jquery-ui-1.8.1.custom.min.js +756 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_load +47 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_cpu_time +57 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_disk +162 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_memory +51 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_n_records +110 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_query_performance +133 -0
- data/vendor/local/share/groonga/munin/plugins/groonga_status +84 -0
- metadata +126 -36
@@ -0,0 +1,84 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
#%# family=auto
|
4
|
+
#%# capabilities=autoconf
|
5
|
+
|
6
|
+
require 'json'
|
7
|
+
|
8
|
+
label = ENV["label"]
|
9
|
+
@groonga = ENV["groonga"] || "groonga"
|
10
|
+
@host = ENV["host"] || "localhost"
|
11
|
+
@port = ENV["port"] || 10041
|
12
|
+
|
13
|
+
command = ARGV.shift
|
14
|
+
|
15
|
+
def parse(success, result)
|
16
|
+
if success
|
17
|
+
begin
|
18
|
+
status, body = JSON.parse(result)
|
19
|
+
return_code, start_time, elapsed, error_message = status
|
20
|
+
if return_code.zero?
|
21
|
+
[success, body]
|
22
|
+
else
|
23
|
+
[false, error_message]
|
24
|
+
end
|
25
|
+
rescue JSON::ParserError
|
26
|
+
[false, $!.message]
|
27
|
+
end
|
28
|
+
else
|
29
|
+
[success, result]
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def run(command, *args)
|
34
|
+
groonga = "#{@groonga} -p #{@port} -c #{@host}"
|
35
|
+
result = `#{groonga} #{command} #{args.join(' ')} 2>&1`
|
36
|
+
parse($?.success?, result)
|
37
|
+
end
|
38
|
+
|
39
|
+
def parse_list(header, list)
|
40
|
+
list.collect do |item|
|
41
|
+
parsed_item = {}
|
42
|
+
header.each_with_index do |(name, type), i|
|
43
|
+
parsed_item[name] = item[i]
|
44
|
+
end
|
45
|
+
parsed_item
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
case command
|
50
|
+
when "autoconf", "detect"
|
51
|
+
success, body = run("status")
|
52
|
+
if success
|
53
|
+
puts "yes"
|
54
|
+
exit(true)
|
55
|
+
else
|
56
|
+
puts "no (#{body})"
|
57
|
+
exit(false)
|
58
|
+
end
|
59
|
+
when "config"
|
60
|
+
if label.nil?
|
61
|
+
title = "groonga: status"
|
62
|
+
else
|
63
|
+
title = "groonga: #{label}: status"
|
64
|
+
end
|
65
|
+
puts <<EOF
|
66
|
+
graph_title #{title}
|
67
|
+
graph_vlabel status
|
68
|
+
graph_category groonga
|
69
|
+
graph_info groonga status
|
70
|
+
|
71
|
+
alloc_count.label alloc count
|
72
|
+
alloc_count.type GAUGE
|
73
|
+
EOF
|
74
|
+
exit(true)
|
75
|
+
end
|
76
|
+
|
77
|
+
success, body = run("status")
|
78
|
+
unless success
|
79
|
+
puts("error: #{body}")
|
80
|
+
exit(false)
|
81
|
+
end
|
82
|
+
puts <<EOF
|
83
|
+
alloc_count.value #{body["alloc_count"]}
|
84
|
+
EOF
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rroonga
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
+
hash: 49
|
4
5
|
prerelease: false
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 9
|
8
|
-
-
|
9
|
-
version: 0.9.
|
9
|
+
- 5
|
10
|
+
version: 0.9.5
|
10
11
|
platform: x86-mingw32
|
11
12
|
authors:
|
12
13
|
- Kouhei Sutou
|
@@ -18,37 +19,10 @@ autorequire:
|
|
18
19
|
bindir: bin
|
19
20
|
cert_chain: []
|
20
21
|
|
21
|
-
date: 2010-
|
22
|
+
date: 2010-07-29 00:00:00 +09:00
|
22
23
|
default_executable:
|
23
|
-
dependencies:
|
24
|
-
|
25
|
-
name: rubyforge
|
26
|
-
prerelease: false
|
27
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
28
|
-
requirements:
|
29
|
-
- - ">="
|
30
|
-
- !ruby/object:Gem::Version
|
31
|
-
segments:
|
32
|
-
- 2
|
33
|
-
- 0
|
34
|
-
- 4
|
35
|
-
version: 2.0.4
|
36
|
-
type: :development
|
37
|
-
version_requirements: *id001
|
38
|
-
- !ruby/object:Gem::Dependency
|
39
|
-
name: gemcutter
|
40
|
-
prerelease: false
|
41
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
42
|
-
requirements:
|
43
|
-
- - ">="
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
segments:
|
46
|
-
- 0
|
47
|
-
- 5
|
48
|
-
- 0
|
49
|
-
version: 0.5.0
|
50
|
-
type: :development
|
51
|
-
version_requirements: *id002
|
24
|
+
dependencies: []
|
25
|
+
|
52
26
|
description: |-
|
53
27
|
rroonga is a extension library to use groonga's DB-API
|
54
28
|
layer. rroonga provides Rubyish readable and writable
|
@@ -62,11 +36,17 @@ executables: []
|
|
62
36
|
extensions: []
|
63
37
|
|
64
38
|
extra_rdoc_files:
|
65
|
-
- README.rdoc
|
39
|
+
- README.ja.rdoc
|
40
|
+
- pkg/rroonga-0.9.5/README.ja.rdoc
|
41
|
+
- pkg/rroonga-0.9.5/NEWS.ja.rdoc
|
42
|
+
- pkg/rroonga-0.9.5/text/TUTORIAL.ja.rdoc
|
43
|
+
- pkg/rroonga-0.9.5/text/expression.rdoc
|
44
|
+
- pkg/rroonga-0.9.5/README.rdoc
|
45
|
+
- pkg/rroonga-0.9.5/NEWS.rdoc
|
66
46
|
- NEWS.ja.rdoc
|
67
47
|
- text/TUTORIAL.ja.rdoc
|
68
48
|
- text/expression.rdoc
|
69
|
-
- README.
|
49
|
+
- README.rdoc
|
70
50
|
- NEWS.rdoc
|
71
51
|
files:
|
72
52
|
- AUTHORS
|
@@ -132,6 +112,7 @@ files:
|
|
132
112
|
- html/footer.html.erb
|
133
113
|
- html/head.html.erb
|
134
114
|
- html/header.html.erb
|
115
|
+
- html/heading-mark.svg
|
135
116
|
- html/index.html
|
136
117
|
- html/install.svg
|
137
118
|
- html/logo.xcf
|
@@ -140,6 +121,7 @@ files:
|
|
140
121
|
- lib/groonga.rb
|
141
122
|
- lib/groonga/context.rb
|
142
123
|
- lib/groonga/expression-builder.rb
|
124
|
+
- lib/groonga/pagination.rb
|
143
125
|
- lib/groonga/patricia-trie.rb
|
144
126
|
- lib/groonga/record.rb
|
145
127
|
- lib/groonga/schema.rb
|
@@ -150,6 +132,83 @@ files:
|
|
150
132
|
- misc/grnop2ruby.rb
|
151
133
|
- pkg-config.rb
|
152
134
|
- rroonga-build.rb
|
135
|
+
- test-unit/Rakefile
|
136
|
+
- test-unit/TODO
|
137
|
+
- test-unit/bin/testrb
|
138
|
+
- test-unit/html/classic.html
|
139
|
+
- test-unit/html/index.html
|
140
|
+
- test-unit/html/index.html.ja
|
141
|
+
- test-unit/lib/test/unit.rb
|
142
|
+
- test-unit/lib/test/unit/assertionfailederror.rb
|
143
|
+
- test-unit/lib/test/unit/assertions.rb
|
144
|
+
- test-unit/lib/test/unit/attribute.rb
|
145
|
+
- test-unit/lib/test/unit/autorunner.rb
|
146
|
+
- test-unit/lib/test/unit/collector.rb
|
147
|
+
- test-unit/lib/test/unit/collector/descendant.rb
|
148
|
+
- test-unit/lib/test/unit/collector/dir.rb
|
149
|
+
- test-unit/lib/test/unit/collector/load.rb
|
150
|
+
- test-unit/lib/test/unit/collector/objectspace.rb
|
151
|
+
- test-unit/lib/test/unit/color-scheme.rb
|
152
|
+
- test-unit/lib/test/unit/color.rb
|
153
|
+
- test-unit/lib/test/unit/diff.rb
|
154
|
+
- test-unit/lib/test/unit/error.rb
|
155
|
+
- test-unit/lib/test/unit/exceptionhandler.rb
|
156
|
+
- test-unit/lib/test/unit/failure.rb
|
157
|
+
- test-unit/lib/test/unit/fixture.rb
|
158
|
+
- test-unit/lib/test/unit/notification.rb
|
159
|
+
- test-unit/lib/test/unit/omission.rb
|
160
|
+
- test-unit/lib/test/unit/pending.rb
|
161
|
+
- test-unit/lib/test/unit/priority.rb
|
162
|
+
- test-unit/lib/test/unit/runner/console.rb
|
163
|
+
- test-unit/lib/test/unit/runner/emacs.rb
|
164
|
+
- test-unit/lib/test/unit/runner/tap.rb
|
165
|
+
- test-unit/lib/test/unit/testcase.rb
|
166
|
+
- test-unit/lib/test/unit/testresult.rb
|
167
|
+
- test-unit/lib/test/unit/testsuite.rb
|
168
|
+
- test-unit/lib/test/unit/ui/console/outputlevel.rb
|
169
|
+
- test-unit/lib/test/unit/ui/console/testrunner.rb
|
170
|
+
- test-unit/lib/test/unit/ui/emacs/testrunner.rb
|
171
|
+
- test-unit/lib/test/unit/ui/tap/testrunner.rb
|
172
|
+
- test-unit/lib/test/unit/ui/testrunner.rb
|
173
|
+
- test-unit/lib/test/unit/ui/testrunnermediator.rb
|
174
|
+
- test-unit/lib/test/unit/ui/testrunnerutilities.rb
|
175
|
+
- test-unit/lib/test/unit/util/backtracefilter.rb
|
176
|
+
- test-unit/lib/test/unit/util/method-owner-finder.rb
|
177
|
+
- test-unit/lib/test/unit/util/observable.rb
|
178
|
+
- test-unit/lib/test/unit/util/procwrapper.rb
|
179
|
+
- test-unit/lib/test/unit/version.rb
|
180
|
+
- test-unit/sample/adder.rb
|
181
|
+
- test-unit/sample/subtracter.rb
|
182
|
+
- test-unit/sample/test_adder.rb
|
183
|
+
- test-unit/sample/test_subtracter.rb
|
184
|
+
- test-unit/sample/test_user.rb
|
185
|
+
- test-unit/test/collector/test-descendant.rb
|
186
|
+
- test-unit/test/collector/test-load.rb
|
187
|
+
- test-unit/test/collector/test_dir.rb
|
188
|
+
- test-unit/test/collector/test_objectspace.rb
|
189
|
+
- test-unit/test/run-test.rb
|
190
|
+
- test-unit/test/test-attribute.rb
|
191
|
+
- test-unit/test/test-color-scheme.rb
|
192
|
+
- test-unit/test/test-color.rb
|
193
|
+
- test-unit/test/test-diff.rb
|
194
|
+
- test-unit/test/test-emacs-runner.rb
|
195
|
+
- test-unit/test/test-fixture.rb
|
196
|
+
- test-unit/test/test-notification.rb
|
197
|
+
- test-unit/test/test-omission.rb
|
198
|
+
- test-unit/test/test-pending.rb
|
199
|
+
- test-unit/test/test-priority.rb
|
200
|
+
- test-unit/test/test-testcase.rb
|
201
|
+
- test-unit/test/test_assertions.rb
|
202
|
+
- test-unit/test/test_error.rb
|
203
|
+
- test-unit/test/test_failure.rb
|
204
|
+
- test-unit/test/test_testresult.rb
|
205
|
+
- test-unit/test/test_testsuite.rb
|
206
|
+
- test-unit/test/testunit-test-util.rb
|
207
|
+
- test-unit/test/ui/test_testrunmediator.rb
|
208
|
+
- test-unit/test/util/test-method-owner-finder.rb
|
209
|
+
- test-unit/test/util/test_backtracefilter.rb
|
210
|
+
- test-unit/test/util/test_observable.rb
|
211
|
+
- test-unit/test/util/test_procwrapper.rb
|
153
212
|
- test/.gitignore
|
154
213
|
- test/groonga-test-utils.rb
|
155
214
|
- test/run-test.rb
|
@@ -167,17 +226,21 @@ files:
|
|
167
226
|
- test/test-hash.rb
|
168
227
|
- test/test-index-column.rb
|
169
228
|
- test/test-logger.rb
|
229
|
+
- test/test-pagination.rb
|
170
230
|
- test/test-patricia-trie.rb
|
171
231
|
- test/test-procedure.rb
|
172
232
|
- test/test-query.rb
|
173
233
|
- test/test-record.rb
|
174
234
|
- test/test-remote.rb
|
235
|
+
- test/test-schema-create-table.rb
|
175
236
|
- test/test-schema-view.rb
|
176
237
|
- test/test-schema.rb
|
177
238
|
- test/test-snippet.rb
|
178
239
|
- test/test-table-cursor.rb
|
179
240
|
- test/test-table-offset-and-limit.rb
|
241
|
+
- test/test-table-select-mecab.rb
|
180
242
|
- test/test-table-select-normalize.rb
|
243
|
+
- test/test-table-select-weight.rb
|
181
244
|
- test/test-table-select.rb
|
182
245
|
- test/test-table.rb
|
183
246
|
- test/test-type.rb
|
@@ -188,9 +251,32 @@ files:
|
|
188
251
|
- test/test-view.rb
|
189
252
|
- text/TUTORIAL.ja.rdoc
|
190
253
|
- text/expression.rdoc
|
254
|
+
- vendor/local/bin/grntest.exe
|
255
|
+
- vendor/local/bin/groonga.exe
|
191
256
|
- vendor/local/bin/libgroonga-0.dll
|
192
|
-
- vendor/local/include/groonga.h
|
257
|
+
- vendor/local/include/groonga/groonga.h
|
258
|
+
- vendor/local/lib/groonga/modules/functions/cast.dll
|
259
|
+
- vendor/local/lib/groonga/modules/functions/cast.la
|
193
260
|
- vendor/local/lib/libgroonga.la
|
261
|
+
- vendor/local/lib/pkgconfig/groonga.pc
|
262
|
+
- vendor/local/share/groonga/admin_html/css/admin.css
|
263
|
+
- vendor/local/share/groonga/admin_html/css/ui-lightness/jquery-ui-1.8.1.custom.css
|
264
|
+
- vendor/local/share/groonga/admin_html/index.html
|
265
|
+
- vendor/local/share/groonga/admin_html/js/jquery-1.4.2.min.js
|
266
|
+
- vendor/local/share/groonga/admin_html/js/jquery-ui-1.8.1.custom.min.js
|
267
|
+
- vendor/local/share/groonga/munin/plugins/groonga_cpu_load
|
268
|
+
- vendor/local/share/groonga/munin/plugins/groonga_cpu_time
|
269
|
+
- vendor/local/share/groonga/munin/plugins/groonga_disk
|
270
|
+
- vendor/local/share/groonga/munin/plugins/groonga_memory
|
271
|
+
- vendor/local/share/groonga/munin/plugins/groonga_n_records
|
272
|
+
- vendor/local/share/groonga/munin/plugins/groonga_query_performance
|
273
|
+
- vendor/local/share/groonga/munin/plugins/groonga_status
|
274
|
+
- pkg/rroonga-0.9.5/README.ja.rdoc
|
275
|
+
- pkg/rroonga-0.9.5/NEWS.ja.rdoc
|
276
|
+
- pkg/rroonga-0.9.5/text/TUTORIAL.ja.rdoc
|
277
|
+
- pkg/rroonga-0.9.5/text/expression.rdoc
|
278
|
+
- pkg/rroonga-0.9.5/README.rdoc
|
279
|
+
- pkg/rroonga-0.9.5/NEWS.rdoc
|
194
280
|
- lib/1.8/groonga.so
|
195
281
|
- lib/1.9/groonga.so
|
196
282
|
has_rdoc: true
|
@@ -205,23 +291,27 @@ require_paths:
|
|
205
291
|
- lib
|
206
292
|
- ext/groonga
|
207
293
|
required_ruby_version: !ruby/object:Gem::Requirement
|
294
|
+
none: false
|
208
295
|
requirements:
|
209
296
|
- - ">="
|
210
297
|
- !ruby/object:Gem::Version
|
298
|
+
hash: 3
|
211
299
|
segments:
|
212
300
|
- 0
|
213
301
|
version: "0"
|
214
302
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
303
|
+
none: false
|
215
304
|
requirements:
|
216
305
|
- - ">="
|
217
306
|
- !ruby/object:Gem::Version
|
307
|
+
hash: 3
|
218
308
|
segments:
|
219
309
|
- 0
|
220
310
|
version: "0"
|
221
311
|
requirements: []
|
222
312
|
|
223
313
|
rubyforge_project: groonga
|
224
|
-
rubygems_version: 1.3.
|
314
|
+
rubygems_version: 1.3.7
|
225
315
|
signing_key:
|
226
316
|
specification_version: 3
|
227
317
|
summary: Ruby bindings for groonga that provides full text search and column store features.
|