groonga 0.0.4 → 0.0.5

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.
Files changed (4) hide show
  1. data/ext/rb-grn.h +1 -1
  2. data/extconf.rb +2 -1
  3. data/html/index.html +1 -1
  4. metadata +1 -1
data/ext/rb-grn.h CHANGED
@@ -65,7 +65,7 @@ RB_GRN_BEGIN_DECLS
65
65
 
66
66
  #define RB_GRN_MAJOR_VERSION 0
67
67
  #define RB_GRN_MINOR_VERSION 0
68
- #define RB_GRN_MICRO_VERSION 4
68
+ #define RB_GRN_MICRO_VERSION 5
69
69
 
70
70
  typedef int rb_grn_boolean;
71
71
  #define RB_GRN_FALSE (0)
data/extconf.rb CHANGED
@@ -74,6 +74,7 @@ def install_groonga_locally(major, minor, micro)
74
74
  tar_gz = "groonga-#{major}.#{minor}.#{micro}.tar.gz"
75
75
  FileUtils.mkdir_p(local_groonga_base_dir)
76
76
 
77
+ install_dir = local_groonga_install_dir
77
78
  Dir.chdir(local_groonga_base_dir) do
78
79
  url = "http://groonga.org/files/groonga/#{tar_gz}"
79
80
  message("downloading %s...", url)
@@ -97,7 +98,7 @@ def install_groonga_locally(major, minor, micro)
97
98
  groonga_source_dir = "groonga-#{major}.#{minor}.#{micro}"
98
99
  Dir.chdir(groonga_source_dir) do
99
100
  message("configuring...")
100
- if xsystem("./configure CFLAGS='-g -O0' --prefix=#{Shellwords.escape(local_groonga_install_dir)}")
101
+ if xsystem("./configure CFLAGS='-g -O0' --prefix=#{Shellwords.escape(install_dir)}")
101
102
  message(" done\n")
102
103
  else
103
104
  message(" failed\n")
data/html/index.html CHANGED
@@ -42,7 +42,7 @@
42
42
 
43
43
  <h3>Ruby/groongaの最新リリース</h3>
44
44
  <p>
45
- 2009-07-18にリリースされた0.0.3が最新です。
45
+ 2009-07-19にリリースされた0.0.5が最新です。
46
46
  </p>
47
47
 
48
48
  <h3 id="install-ruby-groonga">Ruby/groongaのインストール</h3>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: groonga
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou