glib2 1.1.8 → 1.1.9

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -8,20 +8,62 @@ package = GNOME2Package.new do |_package|
8
8
  _package.description = "Ruby/GLib2 is a Ruby binding of GLib-2.x."
9
9
  _package.dependency.gem.runtime = [["pkg-config", ">= 0"]]
10
10
  _package.dependency.gem.development = [["test-unit", ">= 2"]]
11
- _package.win32.packages = ["glib"]
12
- _package.win32.dependencies = ["gettext-runtime", "gnutls"]
11
+ _package.win32.packages = []
12
+ _package.win32.dependencies = ["zlib", "libffi", "gettext-runtime"]
13
+ libffi_lib_dir = File.join(_package.win32.absolute_binary_dir, "lib")
14
+ libffi_include_dir = File.join(libffi_lib_dir, "libffi-3.0.6", "include")
13
15
  _package.win32.build_packages = [
16
+ {
17
+ :name => "glib",
18
+ :download_site => :gnome,
19
+ :label => "GLib",
20
+ :version => "2.35.3",
21
+ :configure_args => [
22
+ "LIBFFI_CFLAGS=-I#{libffi_include_dir}",
23
+ "LIBFFI_LIBS=-L#{libffi_lib_dir} -lffi",
24
+ "--disable-modular-tests",
25
+ ],
26
+ :compression_method => "xz",
27
+ },
28
+ {
29
+ :name => "gmp",
30
+ :download_base_url => "ftp://ftp.gmplib.org/pub/gmp-5.1.0",
31
+ :label => "GNU MP",
32
+ :version => "5.1.0",
33
+ :configure_args => [
34
+ "--disable-static",
35
+ "--enable-shared",
36
+ ],
37
+ :compression_method => "bz2",
38
+ },
39
+ {
40
+ :name => "nettle",
41
+ :download_base_url => "http://www.lysator.liu.se/~nisse/archive",
42
+ :label => "Nettle",
43
+ :version => "2.5",
44
+ :configure_args => [],
45
+ },
46
+ {
47
+ :name => "gnutls",
48
+ :download_base_url => "ftp://ftp.gnutls.org/gcrypt/gnutls/v3.1",
49
+ :label => "GnuTLS",
50
+ :version => "3.1.5",
51
+ :configure_args => [
52
+ "--with-libnettle-prefix=#{_package.win32.absolute_binary_dir}"
53
+ ],
54
+ :compression_method => "xz",
55
+ },
14
56
  {
15
57
  :name => "glib-networking",
16
58
  :download_site => :gnome,
17
59
  :label => "glib-networking",
18
- :version => "2.28.7",
19
- :configure_args => ["--without-libproxy",
20
- "--without-gnome-proxy",
21
- "--without-ca-certificates"],
22
- :patches => ["glib-networking-2.28.7-fix-with-gnome-proxy.diff",
23
- "glib-networking-2.28.7-support-gnutls-2.4.2.diff"],
24
- :need_autoreconf => true,
60
+ :version => "2.35.3",
61
+ :configure_args => [
62
+ "--without-libproxy",
63
+ "--without-gnome-proxy",
64
+ "--without-ca-certificates",
65
+ ],
66
+ :compression_method => "xz",
25
67
  },
26
68
  ]
27
69
  end
@@ -50,7 +50,7 @@ have_var("rb_curr_thread", [ruby_header, "node.h"])
50
50
 
51
51
  create_pkg_config_file("Ruby/GLib2", package_id)
52
52
 
53
- enum_type_prefix = "glib-enum-types"
53
+ enum_types_prefix = "glib-enum-types"
54
54
  include_paths = PKGConfig.cflags_only_I("glib-2.0")
55
55
  headers = include_paths.split.inject([]) do |result, path|
56
56
  result + Dir.glob(File.join(path.sub(/^-I/, ""), "glib", "*.h"))
@@ -61,7 +61,7 @@ include_paths = PKGConfig.cflags_only_I("gobject-2.0")
61
61
  headers = include_paths.split.inject(headers) do |result, path|
62
62
  result + Dir.glob(File.join(path.sub(/^-I/, ""), "gobject", "gsignal.h"))
63
63
  end
64
- glib_mkenums(enum_type_prefix, headers, "G_TYPE_", ["glib-object.h"])
64
+ glib_mkenums(enum_types_prefix, headers, "G_TYPE_", ["glib-object.h"])
65
65
 
66
66
  $defs << "-DRUBY_GLIB2_COMPILATION"
67
67
  create_makefile(module_name)
@@ -35,7 +35,7 @@ extern "C" {
35
35
 
36
36
  #define RBGLIB_MAJOR_VERSION 1
37
37
  #define RBGLIB_MINOR_VERSION 1
38
- #define RBGLIB_MICRO_VERSION 8
38
+ #define RBGLIB_MICRO_VERSION 9
39
39
 
40
40
  #ifndef RSTRING_PTR
41
41
  # define RSTRING_PTR(s) (RSTRING(s)->ptr)
@@ -110,7 +110,8 @@ typedef int GPid;
110
110
  #define CBOOL2RVAL(b) ((b) ? Qtrue : Qfalse)
111
111
  #define RVAL2CBOOL(b) (RTEST(b))
112
112
  #define GERROR2RVAL(error) (rbgerr_gerror2exception(error))
113
- #define RAISE_GERROR(error) rb_exc_raise(GERROR2RVAL(error))
113
+ #define RG_RAISE_ERROR(error) rb_exc_raise(GERROR2RVAL(error))
114
+ #define RAISE_GERROR(error) RG_RAISE_ERROR(error) /* deprecated */
114
115
  #define G_DEF_ERROR(domain, name, module, parent, gtype) \
115
116
  rbgerr_define_gerror(domain, name, module, parent, gtype)
116
117
  #define G_DEF_ERROR2(domain, name, module, parent) \
@@ -114,14 +114,19 @@ get_superclass(GType gtype)
114
114
  return rb_cObject;
115
115
  default:
116
116
  {
117
- const RGObjClassInfo *cinfo_super;
118
117
  GType parent_type;
119
118
 
120
119
  parent_type = g_type_parent(gtype);
121
- cinfo_super = rbgobj_lookup_class_by_gtype_without_lock(parent_type,
122
- Qnil,
123
- TRUE);
124
- return cinfo_super->klass;
120
+ if (parent_type == G_TYPE_INVALID) {
121
+ return cInstantiatable;
122
+ } else {
123
+ const RGObjClassInfo *cinfo_super;
124
+ cinfo_super =
125
+ rbgobj_lookup_class_by_gtype_without_lock(parent_type,
126
+ Qnil,
127
+ TRUE);
128
+ return cinfo_super->klass;
129
+ }
125
130
  }
126
131
  }
127
132
  }
@@ -45,8 +45,10 @@ extern "C" {
45
45
  G_DEF_CLASS_WITH_GC_FUNC(gtype, name, module, mark, free)
46
46
  #define G_DEF_CLASS3(gtype_name, name, module)\
47
47
  (rbgobj_define_class_dynamic(gtype_name, name, module, 0, 0))
48
- #define G_DEF_CLASS4(gtype, name, module, parent) \
48
+ #define G_DEF_CLASS_WITH_PARENT(gtype, name, module, parent) \
49
49
  (rbgobj_define_class(gtype, name, module, 0, 0, parent))
50
+ #define G_DEF_CLASS4(gtype, name, module, parent) \
51
+ G_DEF_CLASS_WITH_PARENT(gtype, name, module, parent)
50
52
 
51
53
  #define G_DEF_INTERFACE(gtype, name, module)\
52
54
  (rbgobj_define_class(gtype, name, module, 0, 0, Qnil))
@@ -10,6 +10,9 @@ class GNOME2Win32BinaryBuildTask
10
10
 
11
11
  def initialize(configuration)
12
12
  @configuration = configuration
13
+ @configuration.build_packages.each do |package|
14
+ package[:compression_method] ||= "gz"
15
+ end
13
16
  define
14
17
  end
15
18
 
@@ -38,20 +41,20 @@ class GNOME2Win32BinaryBuildTask
38
41
  namespace :download do
39
42
  build_packages.each do |package|
40
43
  base = "#{package[:name]}-#{package[:version]}"
41
- tar_gz = "#{base}.tar.gz"
42
- tar_gz_url = "#{download_base_url(package)}/#{tar_gz}"
43
- tar_gz_full_path = download_dir + tar_gz
44
+ tar = "#{base}.tar.#{package[:compression_method]}"
45
+ tar_url = "#{download_base_url(package)}/#{tar}"
46
+ tar_full_path = download_dir + tar
44
47
 
45
48
  desc "Download #{package[:label]} into #{download_dir}."
46
- task package[:name] => tar_gz_full_path.to_s
49
+ task package[:name] => tar_full_path.to_s
47
50
 
48
- directory_path = tar_gz_full_path.dirname
51
+ directory_path = tar_full_path.dirname
49
52
  directory directory_path.to_s
50
- file tar_gz_full_path.to_s => directory_path.to_s do
51
- rake_output_message "downloading... #{tar_gz_url}"
52
- open(tar_gz_url) do |downloaded_tar_gz|
53
- tar_gz_full_path.open("wb") do |tar_gz_file|
54
- tar_gz_file.print(downloaded_tar_gz.read)
53
+ file tar_full_path.to_s => directory_path.to_s do
54
+ rake_output_message "downloading... #{tar_url}"
55
+ open(tar_url) do |downloaded_tar|
56
+ tar_full_path.open("wb") do |tar_file|
57
+ tar_file.print(downloaded_tar.read)
55
58
  end
56
59
  end
57
60
  end
@@ -82,10 +85,10 @@ class GNOME2Win32BinaryBuildTask
82
85
  mkdir_p(package_tmp_dir)
83
86
 
84
87
  base = "#{package[:name]}-#{package[:version]}"
85
- tar_gz = "#{base}.tar.gz"
86
- tar_gz_full_path = download_dir + tar_gz
88
+ tar = "#{base}.tar.#{package[:compression_method]}"
89
+ tar_full_path = download_dir + tar
87
90
  Dir.chdir(package_tmp_dir.to_s) do
88
- sh("tar", "xzf", tar_gz_full_path.to_s) or exit(false)
91
+ sh("tar", "xf", tar_full_path.to_s) or exit(false)
89
92
  end
90
93
 
91
94
  Dir.chdir((package_tmp_dir + base).to_s) do
@@ -95,8 +98,8 @@ class GNOME2Win32BinaryBuildTask
95
98
  sh("./autogen.sh") if package[:need_autogen]
96
99
  sh("autoreconf -i") if package[:need_autoreconf]
97
100
  sh("./configure",
98
- "CPPFLAGS=-I#{rcairo_win32_include_path} -I#{dist_dir + 'include'}",
99
- "LDFLAGS=-L#{rcairo_win32_lib_path} -L#{dist_dir + 'lib'}",
101
+ "CPPFLAGS=#{cppflags(package)}",
102
+ "LDFLAGS=#{ldflags(package)}",
100
103
  "--prefix=#{dist_dir}",
101
104
  "--host=#{@configuration.build_host}",
102
105
  *package[:configure_args]) or exit(false)
@@ -188,4 +191,28 @@ class GNOME2Win32BinaryBuildTask
188
191
  end
189
192
  download_base_url
190
193
  end
194
+
195
+ def cppflags(package)
196
+ include_paths = package[:include_paths] || []
197
+ include_paths += [
198
+ rcairo_win32_include_path,
199
+ dist_dir + 'include',
200
+ ]
201
+ cppflags = include_paths.collect do |path|
202
+ "-I#{path}"
203
+ end
204
+ cppflags.join(" ")
205
+ end
206
+
207
+ def ldflags(package)
208
+ library_paths = package[:library_paths] || []
209
+ library_paths += [
210
+ rcairo_win32_lib_path,
211
+ dist_dir + 'lib',
212
+ ]
213
+ ldflags = library_paths.collect do |path|
214
+ "-L#{path}"
215
+ end
216
+ ldflags.join(" ")
217
+ end
191
218
  end
metadata CHANGED
@@ -1,185 +1,201 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: glib2
3
- version: !ruby/object:Gem::Version
4
- version: 1.1.8
3
+ version: !ruby/object:Gem::Version
4
+ hash: 1
5
5
  prerelease:
6
+ segments:
7
+ - 1
8
+ - 1
9
+ - 9
10
+ version: 1.1.9
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - The Ruby-GNOME2 Project Team
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
- date: 2012-12-19 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2012-12-30 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
15
21
  name: pkg-config
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: '0'
22
- type: :runtime
23
22
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
23
+ requirement: &id001 !ruby/object:Gem::Requirement
25
24
  none: false
26
- requirements:
27
- - - ! '>='
28
- - !ruby/object:Gem::Version
29
- version: '0'
30
- - !ruby/object:Gem::Dependency
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 3
29
+ segments:
30
+ - 0
31
+ version: "0"
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
31
35
  name: test-unit
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: '2'
38
- type: :development
39
36
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
37
+ requirement: &id002 !ruby/object:Gem::Requirement
41
38
  none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: '2'
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ hash: 7
43
+ segments:
44
+ - 2
45
+ version: "2"
46
+ type: :development
47
+ version_requirements: *id002
46
48
  description: Ruby/GLib2 is a Ruby binding of GLib-2.x.
47
49
  email: ruby-gnome2-devel-en@lists.sourceforge.net
48
50
  executables: []
49
- extensions:
51
+
52
+ extensions:
50
53
  - ext/glib2/extconf.rb
51
54
  extra_rdoc_files: []
52
- files:
55
+
56
+ files:
53
57
  - README
54
58
  - Rakefile
55
59
  - extconf.rb
56
- - lib/glib-mkenums.rb
57
- - lib/glib2.rb
58
60
  - lib/glib2/deprecatable.rb
59
- - lib/gnome2-raketask.rb
60
61
  - lib/gnome2-win32-binary-build-task.rb
61
- - lib/gnome2-win32-binary-download-task.rb
62
+ - lib/gnome2-raketask.rb
63
+ - lib/glib2.rb
62
64
  - lib/mkmf-gnome2.rb
63
- - ext/glib2/depend
64
- - ext/glib2/extconf.rb
65
- - ext/glib2/glib2.def
66
- - ext/glib2/rbgcompat.h
67
- - ext/glib2/rbglib.c
68
- - ext/glib2/rbglib.h
69
- - ext/glib2/rbglib2conversions.h
70
- - ext/glib2/rbglib_bookmarkfile.c
65
+ - lib/gnome2-win32-binary-download-task.rb
66
+ - lib/glib-mkenums.rb
67
+ - ext/glib2/rbglib_timer.c
71
68
  - ext/glib2/rbglib_completion.c
72
- - ext/glib2/rbglib_convert.c
73
- - ext/glib2/rbglib_error.c
74
- - ext/glib2/rbglib_fileutils.c
75
- - ext/glib2/rbglib_i18n.c
76
- - ext/glib2/rbglib_int64.c
77
- - ext/glib2/rbglib_io_constants.c
78
- - ext/glib2/rbglib_iochannel.c
79
69
  - ext/glib2/rbglib_iochannel_win32_socket.c
80
- - ext/glib2/rbglib_iochannelerror.c
81
- - ext/glib2/rbglib_keyfile.c
82
- - ext/glib2/rbglib_maincontext.c
83
- - ext/glib2/rbglib_mainloop.c
84
- - ext/glib2/rbglib_messages.c
85
- - ext/glib2/rbglib_pollfd.c
86
- - ext/glib2/rbglib_shell.c
87
- - ext/glib2/rbglib_shellerror.c
88
- - ext/glib2/rbglib_source.c
89
- - ext/glib2/rbglib_spawn.c
90
- - ext/glib2/rbglib_spawnerror.c
70
+ - ext/glib2/rbgobj_param.c
71
+ - ext/glib2/rbgobj_valuearray.c
72
+ - ext/glib2/rbgutildeprecated.h
91
73
  - ext/glib2/rbglib_threads.c
92
- - ext/glib2/rbglib_timer.c
93
- - ext/glib2/rbglib_ucs4.c
74
+ - ext/glib2/rbgobj_value.c
75
+ - ext/glib2/rbglib_fileutils.c
76
+ - ext/glib2/rbglib.c
77
+ - ext/glib2/rbglib_iochannel.c
78
+ - ext/glib2/rbgobj_type.c
79
+ - ext/glib2/rbgobj_typeplugin.c
80
+ - ext/glib2/rbglib.h
81
+ - ext/glib2/rbgobj_convert.c
82
+ - ext/glib2/rbgobj_strv.c
94
83
  - ext/glib2/rbglib_unichar.c
95
- - ext/glib2/rbglib_unicode.c
84
+ - ext/glib2/rbglib_messages.c
85
+ - ext/glib2/rbgutil.c
86
+ - ext/glib2/rbglib_maincontext.c
96
87
  - ext/glib2/rbglib_utf16.c
97
- - ext/glib2/rbglib_utf8.c
98
- - ext/glib2/rbglib_utils.c
99
- - ext/glib2/rbglib_win32.c
100
- - ext/glib2/rbglibdeprecated.c
101
- - ext/glib2/rbglibdeprecated.h
102
- - ext/glib2/rbgobj_boxed.c
103
- - ext/glib2/rbgobj_closure.c
104
- - ext/glib2/rbgobj_convert.c
105
- - ext/glib2/rbgobj_enumflags.c
106
- - ext/glib2/rbgobj_enums.c
107
- - ext/glib2/rbgobj_flags.c
108
- - ext/glib2/rbgobj_fundamental.c
109
88
  - ext/glib2/rbgobj_object.c
110
- - ext/glib2/rbgobj_param.c
111
- - ext/glib2/rbgobj_paramspecs.c
112
- - ext/glib2/rbgobj_signal.c
113
- - ext/glib2/rbgobj_strv.c
114
- - ext/glib2/rbgobj_type.c
115
89
  - ext/glib2/rbgobj_typeinstance.c
116
- - ext/glib2/rbgobj_typeinterface.c
90
+ - ext/glib2/rbglib_error.c
91
+ - ext/glib2/rbgobj_paramspecs.c
92
+ - ext/glib2/rbglib2conversions.h
93
+ - ext/glib2/rbglib_shellerror.c
94
+ - ext/glib2/rbgutil_callback.c
117
95
  - ext/glib2/rbgobj_typemodule.c
118
- - ext/glib2/rbgobj_typeplugin.c
119
- - ext/glib2/rbgobj_value.c
120
- - ext/glib2/rbgobj_valuearray.c
121
- - ext/glib2/rbgobj_valuetypes.c
96
+ - ext/glib2/rbglib_utils.c
97
+ - ext/glib2/rbglib_mainloop.c
98
+ - ext/glib2/extconf.rb
99
+ - ext/glib2/rbgutil_list.h
100
+ - ext/glib2/rbgobj_enums.c
101
+ - ext/glib2/rbglib_win32.c
102
+ - ext/glib2/rbglib_int64.c
103
+ - ext/glib2/rbglib_io_constants.c
104
+ - ext/glib2/glib2.def
105
+ - ext/glib2/rbgobj_fundamental.c
106
+ - ext/glib2/rbgcompat.h
107
+ - ext/glib2/rbgobj_closure.c
122
108
  - ext/glib2/rbgobject.c
109
+ - ext/glib2/rbgobj_boxed.c
110
+ - ext/glib2/rbglib_shell.c
123
111
  - ext/glib2/rbgobject.h
112
+ - ext/glib2/rbglib_utf8.c
113
+ - ext/glib2/rbgobj_typeinterface.c
114
+ - ext/glib2/rbglib_convert.c
115
+ - ext/glib2/rbglib_keyfile.c
116
+ - ext/glib2/rbglib_ucs4.c
117
+ - ext/glib2/rbgobj_valuetypes.c
118
+ - ext/glib2/rbglib_i18n.c
119
+ - ext/glib2/rbglib_spawnerror.c
120
+ - ext/glib2/rbglib_unicode.c
121
+ - ext/glib2/rbgobj_flags.c
122
+ - ext/glib2/rbgutildeprecated.c
123
+ - ext/glib2/rbglibdeprecated.c
124
+ - ext/glib2/rbgutil_list.c
125
+ - ext/glib2/depend
124
126
  - ext/glib2/rbgprivate.h
125
- - ext/glib2/rbgutil.c
127
+ - ext/glib2/rbglib_pollfd.c
126
128
  - ext/glib2/rbgutil.h
127
- - ext/glib2/rbgutil_callback.c
128
- - ext/glib2/rbgutil_list.c
129
- - ext/glib2/rbgutil_list.h
130
- - ext/glib2/rbgutildeprecated.c
131
- - ext/glib2/rbgutildeprecated.h
132
- - sample/bookmarkfile.rb
129
+ - ext/glib2/rbglib_bookmarkfile.c
130
+ - ext/glib2/rbglib_iochannelerror.c
131
+ - ext/glib2/rbglib_source.c
132
+ - ext/glib2/rbgobj_signal.c
133
+ - ext/glib2/rbglibdeprecated.h
134
+ - ext/glib2/rbgobj_enumflags.c
135
+ - ext/glib2/rbglib_spawn.c
136
+ - sample/timeout2.rb
133
137
  - sample/completion.rb
138
+ - sample/utils.rb
139
+ - sample/timeout.rb
134
140
  - sample/idle.rb
135
- - sample/iochannel.rb
141
+ - sample/bookmarkfile.rb
136
142
  - sample/keyfile.rb
137
143
  - sample/shell.rb
138
- - sample/spawn.rb
139
- - sample/timeout.rb
140
- - sample/timeout2.rb
141
144
  - sample/timer.rb
142
- - sample/type-register.rb
145
+ - sample/iochannel.rb
143
146
  - sample/type-register2.rb
144
- - sample/utils.rb
145
- - test/glib-test-init.rb
146
- - test/glib-test-utils.rb
147
- - test/run-test.rb
147
+ - sample/spawn.rb
148
+ - sample/type-register.rb
149
+ - test/test_mkenums.rb
150
+ - test/test_spawn.rb
148
151
  - test/test_enum.rb
149
152
  - test/test_file_utils.rb
150
153
  - test/test_flags.rb
151
- - test/test_glib2.rb
152
- - test/test_iochannel.rb
153
154
  - test/test_key_file.rb
154
- - test/test_mkenums.rb
155
+ - test/glib-test-utils.rb
156
+ - test/run-test.rb
157
+ - test/test_win32.rb
155
158
  - test/test_signal.rb
156
- - test/test_spawn.rb
159
+ - test/test_glib2.rb
157
160
  - test/test_timeout.rb
158
- - test/test_unicode.rb
159
161
  - test/test_utils.rb
160
- - test/test_win32.rb
162
+ - test/test_unicode.rb
163
+ - test/test_iochannel.rb
164
+ - test/glib-test-init.rb
161
165
  homepage: http://ruby-gnome2.sourceforge.jp/
162
166
  licenses: []
167
+
163
168
  post_install_message:
164
169
  rdoc_options: []
165
- require_paths:
170
+
171
+ require_paths:
166
172
  - lib
167
- required_ruby_version: !ruby/object:Gem::Requirement
173
+ required_ruby_version: !ruby/object:Gem::Requirement
168
174
  none: false
169
- requirements:
170
- - - ! '>='
171
- - !ruby/object:Gem::Version
175
+ requirements:
176
+ - - ">="
177
+ - !ruby/object:Gem::Version
178
+ hash: 61
179
+ segments:
180
+ - 1
181
+ - 8
182
+ - 5
172
183
  version: 1.8.5
173
- required_rubygems_version: !ruby/object:Gem::Requirement
184
+ required_rubygems_version: !ruby/object:Gem::Requirement
174
185
  none: false
175
- requirements:
176
- - - ! '>='
177
- - !ruby/object:Gem::Version
178
- version: '0'
186
+ requirements:
187
+ - - ">="
188
+ - !ruby/object:Gem::Version
189
+ hash: 3
190
+ segments:
191
+ - 0
192
+ version: "0"
179
193
  requirements: []
194
+
180
195
  rubyforge_project:
181
- rubygems_version: 1.8.23
196
+ rubygems_version: 1.8.24
182
197
  signing_key:
183
198
  specification_version: 3
184
199
  summary: Ruby/GLib2 is a Ruby binding of GLib-2.x.
185
200
  test_files: []
201
+