rroonga 4.0.2-x64-mingw32 → 4.0.3-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/doc/text/news.textile +12 -0
  3. data/ext/groonga/extconf.rb +4 -1
  4. data/ext/groonga/rb-grn.h +1 -1
  5. data/lib/1.9/groonga.so +0 -0
  6. data/lib/2.0/groonga.so +0 -0
  7. data/lib/2.1/groonga.so +0 -0
  8. data/vendor/local/bin/groonga-benchmark.exe +0 -0
  9. data/vendor/local/bin/groonga.exe +0 -0
  10. data/vendor/local/bin/libgroonga-0.dll +0 -0
  11. data/vendor/local/bin/libmecab-1.dll +0 -0
  12. data/vendor/local/bin/libwinpthread-1.dll +0 -0
  13. data/vendor/local/bin/mecab.exe +0 -0
  14. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.a +0 -0
  15. data/vendor/local/lib/groonga/plugins/query_expanders/tsv.dll.a +0 -0
  16. data/vendor/local/lib/groonga/plugins/suggest/suggest.a +0 -0
  17. data/vendor/local/lib/groonga/plugins/suggest/suggest.dll.a +0 -0
  18. data/vendor/local/lib/groonga/plugins/table/table.a +0 -0
  19. data/vendor/local/lib/groonga/plugins/table/table.dll.a +0 -0
  20. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.a +0 -0
  21. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  22. data/vendor/local/lib/libgroonga.a +0 -0
  23. data/vendor/local/lib/libgroonga.dll.a +0 -0
  24. data/vendor/local/lib/libmecab.a +0 -0
  25. data/vendor/local/lib/libmecab.dll.a +0 -0
  26. data/vendor/local/lib/libmsgpack.a +0 -0
  27. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  28. data/vendor/local/lib/libmsgpackc.a +0 -0
  29. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  30. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  31. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  32. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  33. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  34. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  35. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a13a797e407dc64d6d380182ca8659088892ebab
4
- data.tar.gz: 79387f7bbe3eb28ac1631d1b46d83e982ec35941
3
+ metadata.gz: 606bea5e6cf7225c7bcdf66fcd7b371deb714c4e
4
+ data.tar.gz: 53ccdd4c782fc79710807fa72ca9e7815aebcd56
5
5
  SHA512:
6
- metadata.gz: 39d2f8d9c2d2f5f9b0476200126cc040ead5d160d42457f8a3e4b845cda1751d56c4dbc4cf477be525700604f222758377b46e274b2ca326272c6eba2e9c1055
7
- data.tar.gz: 137511a3cf633122dbbba48e79b222bdb4a4e0307fac23700f548d03f6338abaaf9c1d9fbd98aa63954258ea1b8e539ebba222f7e3ecf7111a79b2926dd4d779
6
+ metadata.gz: 81eb375855c3492c3786fa6135ae8b77128356c1d5a3073d62fce3751fbb2c0d5ba825890a793f7883be50e483cc323116b78c7bafe98f2f7364d63fdea75aa9
7
+ data.tar.gz: 4ea489a4f12f4a939e12ccdff843dce1d53b0c6aa31e72d981b5c3e0bc1abe420523c56b799c3b19cc69a9b7fbb9dbdcef0ca00c09ddf8732a9ba899f706a628
@@ -1,5 +1,17 @@
1
1
  h1. NEWS
2
2
 
3
+ h2(#4-0-3). 4.0.3: 2014-06-04
4
+
5
+ h3. Fixes
6
+
7
+ * [windows] Fixed a bug that Rroonga reports load error by
8
+ bundling the fixed version Groonga package.
9
+ [groonga-dev,02398][Reported by Masafumi Yokoyama]
10
+
11
+ h3. Thanks
12
+
13
+ * Masafumi Yokoyama
14
+
3
15
  h2(#4-0-2). 4.0.2: 2014-05-29
4
16
 
5
17
  h3. Improvements
@@ -104,7 +104,10 @@ def extract_zip(filename, destrination_dir)
104
104
 
105
105
  Archive::Zip.extract(filename, destrination_dir)
106
106
  rescue LoadError
107
- system("unzip", filename, "-d", destrination_dir)
107
+ command_line = ["unzip", filename, "-d", destrination_dir]
108
+ unless system(*command_line)
109
+ raise "Failed to unzip: #{command_line.join(' ')}"
110
+ end
108
111
  end
109
112
 
110
113
  def extract_groonga_win32_binary(major, minor, micro)
@@ -84,7 +84,7 @@ RB_GRN_BEGIN_DECLS
84
84
 
85
85
  #define RB_GRN_MAJOR_VERSION 4
86
86
  #define RB_GRN_MINOR_VERSION 0
87
- #define RB_GRN_MICRO_VERSION 2
87
+ #define RB_GRN_MICRO_VERSION 3
88
88
 
89
89
  #define RB_GRN_QUERY_DEFAULT_MAX_EXPRESSIONS 32
90
90
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rroonga
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.2
4
+ version: 4.0.3
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Kouhei Sutou
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
- date: 2014-05-30 00:00:00.000000000 Z
15
+ date: 2014-06-04 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: pkg-config
@@ -356,6 +356,7 @@ files:
356
356
  - vendor/local/bin/libmsgpack-3.dll
357
357
  - vendor/local/bin/libmsgpackc-2.dll
358
358
  - vendor/local/bin/libstdc++-6.dll
359
+ - vendor/local/bin/libwinpthread-1.dll
359
360
  - vendor/local/bin/mecab-config
360
361
  - vendor/local/bin/mecab.exe
361
362
  - vendor/local/bin/mecabrc