rroonga 4.0.2 → 4.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85b9ba2dce694e671e8b73a57575709d2e18582a
4
- data.tar.gz: 52ee5e4f1991033c694a211bc73fd58648c0f7a4
3
+ metadata.gz: 8d5670d6f858be2364f027b3bcd907de5e18d342
4
+ data.tar.gz: 5e5aed82c913c8f8a50c865d17b867f680d5677f
5
5
  SHA512:
6
- metadata.gz: 0056eca940d31139c9326ee40c10da1be3a5a1d82f522cfd1d9b9c61585b520b750c79c7e5580170b2b735016892f3e24732b3a13c0de5c2288f203c721ddc9b
7
- data.tar.gz: 2bcafdf27da662904945ffd41a339d1284920961db6e71e84e6e92cffe3c253ab4424709988a3770415c6690c681c5d2bf4bc1fcf003386c3ae7ac471ad880be
6
+ metadata.gz: f7634917933dbf137843426de92eef2db163c7bc0b8cc51511a99d5ca53e43a745d50f48ad8fbbd3b6a43ef38329861f08e322daefb81085844f1bc741915a6c
7
+ data.tar.gz: c9f30a3b12dc1021014dbcb3999635b5d63dc7693d97a3fb521daec3aaebe45f41d0abdcb195067ce4ecc4fc39a899517fb7fe15faeccedc1be88d497d75a359
@@ -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
@@ -103,6 +103,11 @@ def extract_zip(filename, destrination_dir)
103
103
  end
104
104
 
105
105
  Archive::Zip.extract(filename, destrination_dir)
106
+ rescue LoadError
107
+ command_line = ["unzip", filename, "-d", destrination_dir]
108
+ unless system(*command_line)
109
+ raise "Failed to unzip: #{command_line.join(' ')}"
110
+ end
106
111
  end
107
112
 
108
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
 
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: ruby
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