rroonga 4.0.2-x86-mingw32 → 4.0.3-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) 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 +0 -0
  22. data/vendor/local/lib/groonga/plugins/tokenizers/mecab.dll.a +0 -0
  23. data/vendor/local/lib/libgroonga.a +0 -0
  24. data/vendor/local/lib/libgroonga.dll.a +0 -0
  25. data/vendor/local/lib/libmecab.a +0 -0
  26. data/vendor/local/lib/libmecab.dll.a +0 -0
  27. data/vendor/local/lib/libmsgpack.a +0 -0
  28. data/vendor/local/lib/libmsgpack.dll.a +0 -0
  29. data/vendor/local/lib/libmsgpackc.a +0 -0
  30. data/vendor/local/lib/libmsgpackc.dll.a +0 -0
  31. data/vendor/local/libexec/mecab/mecab-cost-train.exe +0 -0
  32. data/vendor/local/libexec/mecab/mecab-dict-gen.exe +0 -0
  33. data/vendor/local/libexec/mecab/mecab-dict-index.exe +0 -0
  34. data/vendor/local/libexec/mecab/mecab-system-eval.exe +0 -0
  35. data/vendor/local/libexec/mecab/mecab-test-gen.exe +0 -0
  36. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: caad59febb9d7f89183b00f84c97d47bb42daa95
4
- data.tar.gz: 2d54b732d458ce6a88b0a3207f64c972459820b4
3
+ metadata.gz: 935b2f41514ae6d1a1ee2e113cb7b2a808461b07
4
+ data.tar.gz: 0cb586d6a010c3e176af9610058579cdea6d7a8d
5
5
  SHA512:
6
- metadata.gz: f143344a3f6d3b9afd1885301d7d8a06fbc417568ee6075b22675b0a0ee71f93189e3dba77796beab54c86c9a30af376f3f0c35716d97283cd4d1c5f22f50647
7
- data.tar.gz: 61e4ee7919347ba3e4060553d470f86e6c5aee1942a2d5ffe1fcf95b5337a41a6158592547b4311552ee32fe64844a9178433047373ed9951ae928c0e65d6105
6
+ metadata.gz: f96c3d5ce27a8aef00a319fbcf111e82f922fbf524e346bd1fabdde82894102cae40068a236cfc55c7260f378d0d3856f8af38a3489c4e44aaad1aa1492294d9
7
+ data.tar.gz: c52a27f50613172a3c98f32f0f00988f89474ea43e81b3d965e67301c491cf9ddf3f761e422d14278fbe39334568ffb94dee937aa16146df96f93bb7ccc726e2
@@ -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)
data/ext/groonga/rb-grn.h CHANGED
@@ -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
 
data/lib/1.9/groonga.so CHANGED
Binary file
data/lib/2.0/groonga.so CHANGED
Binary file
data/lib/2.1/groonga.so CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
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: x86-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