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 +4 -4
- data/doc/text/news.textile +12 -0
- data/ext/groonga/extconf.rb +5 -0
- data/ext/groonga/rb-grn.h +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8d5670d6f858be2364f027b3bcd907de5e18d342
|
|
4
|
+
data.tar.gz: 5e5aed82c913c8f8a50c865d17b867f680d5677f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7634917933dbf137843426de92eef2db163c7bc0b8cc51511a99d5ca53e43a745d50f48ad8fbbd3b6a43ef38329861f08e322daefb81085844f1bc741915a6c
|
|
7
|
+
data.tar.gz: c9f30a3b12dc1021014dbcb3999635b5d63dc7693d97a3fb521daec3aaebe45f41d0abdcb195067ce4ecc4fc39a899517fb7fe15faeccedc1be88d497d75a359
|
data/doc/text/news.textile
CHANGED
|
@@ -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
|
data/ext/groonga/extconf.rb
CHANGED
|
@@ -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
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.
|
|
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-
|
|
15
|
+
date: 2014-06-04 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: pkg-config
|