rjb 1.1.0-x86-mswin32-60 → 1.1.1-x86-mswin32-60

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.
data/ChangeLog CHANGED
@@ -1,270 +1,276 @@
1
- Tue Dec 27 Kuwashima
2
- *test/Test.java
3
- *test/test.rb
4
- *ext/depend
5
- *ext/load.c
6
- *ext/extconf.rb
7
- *ext/rjbexception.c
8
- *ext/rjb.c
9
- *ext/riconv.c
10
- change for compatibility with Ruby-1.9.0
11
- Tue Nov 20 arton
12
- *rjb.c
13
- mark version 1.10.12 for next relase.
14
- *load.c
15
- omit useless double-quotations from JAVA_HOME, maybe specifies a longpathname (but useless).
16
- Wed Nov 14 Kuwashima
17
- *rjb.c
18
- add error check to constructor.
19
- Fri Nov 9 arton
20
- *test.rb
21
- *Test.java
22
- add test for reproducing rjb-bugs-15430
23
- *rjb.c
24
- fix rjb-bugs-15430 that caused by bad array conversion.
25
- (generics method result signature is an object, but the real result is typed array)
26
- *riconv.c
27
- correct to get the number of array element.
28
- Tue Oct 23 Kuwashima
29
- *riconv.c
30
- Change string encoding conversion rule.
31
- Mon Oct 22 Kuwashima
32
- *riconv.c
33
- *riconv.h
34
- recycle iconv instance.
35
- *test/test.rb
36
- add cases for test_kjconv
37
- Sun Sep 23 arton
38
- *rjb.c
39
- version 1.0.9
40
- convert to Ruby's type if Rjb::primitive_converion is enalbed and the result type is java.lang.Object
41
- support the object conversion for a bignum to long.
42
- Sat Sep 15 arton
43
- *rjb.c
44
- version 1.0.8
45
- correction of 1.0.7, support long type.
46
- Fri Sep 14 arton
47
- *rjb.c
48
- version 1.0.7
49
- add auto primitive conversion toggled by Rjb::primitive_conversion
50
- *test.rb
51
- add test_auto_conv
52
- Sun Jun 17 arton
53
- *rjb.c
54
- add method aliases.
55
- setXxYy -> xx_yy=
56
- getXxYy -> xx_yy
57
- isXxYy -> xx_yy?
58
- xxYyZz -> xx_yy_zz
59
- *test.rb
60
- add a test for the method alias feature.
61
- Tue Nov 21 arton
62
- *rjb.c
63
- Skip the constant registering process, if the constant was already defined.
64
- *load.c
65
- *rjb.c
66
- *rjbexception.c
67
- *rjb.h
68
- add prefix 'rjb' for externed symbol names to avoid confliction.
69
-
70
- Sun Oct 08 arton (on behalf of richard apodaca)
71
- *load.c
72
- support AMD64
73
-
74
- Mon Sep 11 arton
75
- *test.rb
76
- add a test of arguments types are various array.
77
- *Test.java
78
- add a test of arguments types are various array.
79
- *rjb.c
80
- accept nil for array parameter.
81
- Sun Sep 10 arton
82
- *test.rb
83
- add a test of return type is an object wrapped an array
84
- *Test.java
85
- add a method that returns an object wrapped an array
86
- *rjb.c
87
- check array-mark in jv2rv for returned object was an array
88
- Tue Aug 1 arton
89
- *load.c
90
- *rjb.c
91
- change load pathname of the bridge class.
92
- *post-install.rb
93
- add for remove previous installed rjb.so.
94
- *rjb.rake
95
- add for build Gem.
96
- *rjb.rb
97
- for preparing the pathname constant of the bridge class.
98
- *depend
99
- chage binary name from rjb.so to rjbcore.so
100
- *extconf.rb
101
- chage binary name from rjb.so to rjbcore.so
102
-
103
- Mon Jul 31 arton
104
- *load.c
105
- fix buffer allocation
106
-
107
- Sun Jul 16 (Jun 22) Kuwashima and arton
108
- *rjb.c
109
- version 0.2.8
110
- *MANIFEST
111
- *depend
112
- *load.c
113
- *rjbexception.c
114
- change jni.h to jniwrap.h.
115
- change the bridge class's header according to JDK 5.0's javah.
116
- *jniwrap.h
117
- wrap jni.h for Cygin
118
-
119
- Sat Jun 10 14:10:05 2006 arton
120
- *rjb.c
121
- version 0.2.7
122
- support an array of arrays from ruby to java.
123
-
124
- Mon May 8 08:52:12 2006 arton
125
- *load.c
126
- revision 5
127
- support both Intel and PPC Mac.
128
- Patched version was contributed by Demetrius Nunes.
129
-
130
- Wed Apr 12 03:57:12 2006 arton
131
- *rjb.c
132
- version 0.2.6
133
- support an array of arrays.
134
- *test.rb
135
- add an array of arrays test, some tests are contributed by Darren Day.
136
- *Test.java
137
- add a test method that returns an array of arrays, some tests are
138
- contributed by Darren Day.
139
-
140
- Sat Dec 24 18:56:38 2005 arton
141
- *rjb.c
142
- version 0.2.5
143
- release String, Float, Array object after method call.
144
- *gctest.rb
145
- add for String object gc test
146
-
147
- Mon Sep 19 01:09:30 2005 arton
148
- *rjb.c
149
- version 0.2.4
150
- use null instead of empty string when String argument is nil
151
- omit unused local variable from jstring2val
152
- *test.rb
153
- add null string test (bug since utf-8 support)
154
-
155
- Tue Jun 28 01:57:07 2005 arton
156
- *rjb.c
157
- version 0.2.3
158
- convert result object to imported class if object is an instance of Class
159
- call Class#forName if argument count is 1
160
- *test.rb
161
- add test_importobj contributed by Mr. Kuwashima, thanks.
162
-
163
- Mon Jun 27 20:30:50 2005 arton
164
- treat Class.forName as Rjb::import
165
- *rjb.c
166
- version 0.2.2
167
- add method 'forName' into imported Class object
168
- if pass imported object to JVM, extract Class object from ruby object
169
- *test.rb
170
- add above tests
171
-
172
- Sat Jun 25 05:58:36 2005 arton
173
- most bugs were reported by Mr. Micael Weller, thanks.
174
- *rjb.c
175
- version 0.2.1
176
- correct derived static method search
177
- search class methods then class's instance methods when called by class
178
- avoid register non capitalized named constants into constants table
179
- correct capitalized named method search
180
- *riconv.c
181
- never call iconv if $KCODE is nil
182
- *load.c
183
- using path separator ; for cygwin (by Ryugate)
184
-
185
- Sun Apr 24 05:26:16 2005 arton
186
- *rb.c
187
- version 0.2.0
188
- delete localref if globalref was created.
189
- load can take the second argument for jvm
190
- *load.c
191
- load can take the second argument for jvm
192
-
193
- Mon Jan 17 02:40:21 2005 arton
194
- *rjb.c
195
- add 'throw' module function.
196
- move java exception handling functions into newly created rjbexception.c
197
- *rjb.h
198
- declations for rjb.c and rjbexception.c
199
- *rjbexception.c
200
- java exception handling functions, and 'throw' module function.
201
- *test.rb
202
- adding throw test.
203
-
204
- Wed Jan 12 00:01:08 2005 Kaspar Schiess and arton
205
- *rjb.c
206
- correct Rjb::load parameter evaluation (classpath).
207
- - many thanks to Mr.Schiess.
208
-
209
- Sun Nov 21 02:51:43 2004 Kuwashima and arton
210
- *rjb.c
211
- move dbcs-utf-8 auto conversion feature into riconv.?
212
- remove JNI version argument from Rjb::load. (bug reported by Mr.Tateishi)
213
- *load.c
214
- correct CLASSPATH setting (bad environment name).(bug reported by Mr.Tateishi)
215
- *riconv.c riconv.h (contributed by Mr.Kuwashima)
216
- DBCS - utf-8 auto conversion functions.
217
- *depend MANIFEST
218
- add riconv.?
219
- - many tanks to Mr.Kuwashima and Mr.Tateishi.
220
-
221
- Tue Oct 5 23:08:59 2004 Kuwashima and arton
222
- *test.rb
223
- add kanji conversion test
224
- *rjb.c
225
- add dbcs(sjis and euc-jp) - utf-8 auto conversion feature.
226
- the patch was contributed by Mr.Kuwashima, many thanks.
227
-
228
- Sun Oct 3 18:24:42 2004 arton
229
- *load.c
230
- JNIEnv* now using local variable instead of global one.
231
- Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
232
- *rjb.c
233
- JNIEnv* now using local variable instead of global one.
234
- Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
235
- This change was suggested by Mr.Kuwashima, he also tested the behavior,
236
- and gave me some test codes.
237
- and attach_current_thread is from Mr.Kuwashima's patch.
238
- Many thanks to Mr.Kuwashima.
239
-
240
- Sat Sep 25 03:25:45 2004 arton
241
- *rjb.c
242
- implements interface's method argument conversion.
243
- *test.rb
244
- add Comparable test (interface with method arguments)
245
- *Test.java
246
- add Comparable test method.
247
-
248
- Wed Sep 22 02:30:15 2004 arton
249
- *rjb.c
250
- correct constants load, using mid-class.
251
- convert null string to nil
252
-
253
- Wed Sep 22 00:05:32 2004 arton
254
- *rjb.c
255
- correct ruby type checking. If the parameter type is java.lang.String, rjb instance is always accepted.
256
-
257
- Mon Sep 20 22:02:53 2004 arton
258
- *rjb.c
259
- checking method/constructor signature with class when the argument is rjb's instance.
260
- Sun Sep 19 00:54:35 2004 arton
261
- *rjb.c
262
- convert Java exception to Ruby's StandardError derived class.
263
- checking method/constructor signature when invoking if no signatur argument is supplied.
264
- adding field accessor.
265
-
266
- Sun Sep 12 21:42:00 2004 arton
267
- *rjb.c
268
- call exception description when verbose = true.
269
- correct recursive import call (for Boolean).
270
- corrent method not found message creation.
1
+ Wed Jan 9 arton
2
+ *ext/rjb.h
3
+ add some ruby macros that defined after 1.8.6 for compatibility
4
+ Change RBridge.class by 1.4.2
5
+ *data/rjb/jp/co/infoseek/hp/arton/rjb/RBridge.class
6
+ compiled by 1.4.2 version of Java
7
+ Tue Dec 27 Kuwashima
8
+ *test/Test.java
9
+ *test/test.rb
10
+ *ext/depend
11
+ *ext/load.c
12
+ *ext/extconf.rb
13
+ *ext/rjbexception.c
14
+ *ext/rjb.c
15
+ *ext/riconv.c
16
+ change for compatibility with Ruby-1.9.0
17
+ Tue Nov 20 arton
18
+ *rjb.c
19
+ mark version 1.10.12 for next relase.
20
+ *load.c
21
+ omit useless double-quotations from JAVA_HOME, maybe specifies a longpathname (but useless).
22
+ Wed Nov 14 Kuwashima
23
+ *rjb.c
24
+ add error check to constructor.
25
+ Fri Nov 9 arton
26
+ *test.rb
27
+ *Test.java
28
+ add test for reproducing rjb-bugs-15430
29
+ *rjb.c
30
+ fix rjb-bugs-15430 that caused by bad array conversion.
31
+ (generics method result signature is an object, but the real result is typed array)
32
+ *riconv.c
33
+ correct to get the number of array element.
34
+ Tue Oct 23 Kuwashima
35
+ *riconv.c
36
+ Change string encoding conversion rule.
37
+ Mon Oct 22 Kuwashima
38
+ *riconv.c
39
+ *riconv.h
40
+ recycle iconv instance.
41
+ *test/test.rb
42
+ add cases for test_kjconv
43
+ Sun Sep 23 arton
44
+ *rjb.c
45
+ version 1.0.9
46
+ convert to Ruby's type if Rjb::primitive_converion is enalbed and the result type is java.lang.Object
47
+ support the object conversion for a bignum to long.
48
+ Sat Sep 15 arton
49
+ *rjb.c
50
+ version 1.0.8
51
+ correction of 1.0.7, support long type.
52
+ Fri Sep 14 arton
53
+ *rjb.c
54
+ version 1.0.7
55
+ add auto primitive conversion toggled by Rjb::primitive_conversion
56
+ *test.rb
57
+ add test_auto_conv
58
+ Sun Jun 17 arton
59
+ *rjb.c
60
+ add method aliases.
61
+ setXxYy -> xx_yy=
62
+ getXxYy -> xx_yy
63
+ isXxYy -> xx_yy?
64
+ xxYyZz -> xx_yy_zz
65
+ *test.rb
66
+ add a test for the method alias feature.
67
+ Tue Nov 21 arton
68
+ *rjb.c
69
+ Skip the constant registering process, if the constant was already defined.
70
+ *load.c
71
+ *rjb.c
72
+ *rjbexception.c
73
+ *rjb.h
74
+ add prefix 'rjb' for externed symbol names to avoid confliction.
75
+
76
+ Sun Oct 08 arton (on behalf of richard apodaca)
77
+ *load.c
78
+ support AMD64
79
+
80
+ Mon Sep 11 arton
81
+ *test.rb
82
+ add a test of arguments types are various array.
83
+ *Test.java
84
+ add a test of arguments types are various array.
85
+ *rjb.c
86
+ accept nil for array parameter.
87
+ Sun Sep 10 arton
88
+ *test.rb
89
+ add a test of return type is an object wrapped an array
90
+ *Test.java
91
+ add a method that returns an object wrapped an array
92
+ *rjb.c
93
+ check array-mark in jv2rv for returned object was an array
94
+ Tue Aug 1 arton
95
+ *load.c
96
+ *rjb.c
97
+ change load pathname of the bridge class.
98
+ *post-install.rb
99
+ add for remove previous installed rjb.so.
100
+ *rjb.rake
101
+ add for build Gem.
102
+ *rjb.rb
103
+ for preparing the pathname constant of the bridge class.
104
+ *depend
105
+ chage binary name from rjb.so to rjbcore.so
106
+ *extconf.rb
107
+ chage binary name from rjb.so to rjbcore.so
108
+
109
+ Mon Jul 31 arton
110
+ *load.c
111
+ fix buffer allocation
112
+
113
+ Sun Jul 16 (Jun 22) Kuwashima and arton
114
+ *rjb.c
115
+ version 0.2.8
116
+ *MANIFEST
117
+ *depend
118
+ *load.c
119
+ *rjbexception.c
120
+ change jni.h to jniwrap.h.
121
+ change the bridge class's header according to JDK 5.0's javah.
122
+ *jniwrap.h
123
+ wrap jni.h for Cygin
124
+
125
+ Sat Jun 10 14:10:05 2006 arton
126
+ *rjb.c
127
+ version 0.2.7
128
+ support an array of arrays from ruby to java.
129
+
130
+ Mon May 8 08:52:12 2006 arton
131
+ *load.c
132
+ revision 5
133
+ support both Intel and PPC Mac.
134
+ Patched version was contributed by Demetrius Nunes.
135
+
136
+ Wed Apr 12 03:57:12 2006 arton
137
+ *rjb.c
138
+ version 0.2.6
139
+ support an array of arrays.
140
+ *test.rb
141
+ add an array of arrays test, some tests are contributed by Darren Day.
142
+ *Test.java
143
+ add a test method that returns an array of arrays, some tests are
144
+ contributed by Darren Day.
145
+
146
+ Sat Dec 24 18:56:38 2005 arton
147
+ *rjb.c
148
+ version 0.2.5
149
+ release String, Float, Array object after method call.
150
+ *gctest.rb
151
+ add for String object gc test
152
+
153
+ Mon Sep 19 01:09:30 2005 arton
154
+ *rjb.c
155
+ version 0.2.4
156
+ use null instead of empty string when String argument is nil
157
+ omit unused local variable from jstring2val
158
+ *test.rb
159
+ add null string test (bug since utf-8 support)
160
+
161
+ Tue Jun 28 01:57:07 2005 arton
162
+ *rjb.c
163
+ version 0.2.3
164
+ convert result object to imported class if object is an instance of Class
165
+ call Class#forName if argument count is 1
166
+ *test.rb
167
+ add test_importobj contributed by Mr. Kuwashima, thanks.
168
+
169
+ Mon Jun 27 20:30:50 2005 arton
170
+ treat Class.forName as Rjb::import
171
+ *rjb.c
172
+ version 0.2.2
173
+ add method 'forName' into imported Class object
174
+ if pass imported object to JVM, extract Class object from ruby object
175
+ *test.rb
176
+ add above tests
177
+
178
+ Sat Jun 25 05:58:36 2005 arton
179
+ most bugs were reported by Mr. Micael Weller, thanks.
180
+ *rjb.c
181
+ version 0.2.1
182
+ correct derived static method search
183
+ search class methods then class's instance methods when called by class
184
+ avoid register non capitalized named constants into constants table
185
+ correct capitalized named method search
186
+ *riconv.c
187
+ never call iconv if $KCODE is nil
188
+ *load.c
189
+ using path separator ; for cygwin (by Ryugate)
190
+
191
+ Sun Apr 24 05:26:16 2005 arton
192
+ *rb.c
193
+ version 0.2.0
194
+ delete localref if globalref was created.
195
+ load can take the second argument for jvm
196
+ *load.c
197
+ load can take the second argument for jvm
198
+
199
+ Mon Jan 17 02:40:21 2005 arton
200
+ *rjb.c
201
+ add 'throw' module function.
202
+ move java exception handling functions into newly created rjbexception.c
203
+ *rjb.h
204
+ declations for rjb.c and rjbexception.c
205
+ *rjbexception.c
206
+ java exception handling functions, and 'throw' module function.
207
+ *test.rb
208
+ adding throw test.
209
+
210
+ Wed Jan 12 00:01:08 2005 Kaspar Schiess and arton
211
+ *rjb.c
212
+ correct Rjb::load parameter evaluation (classpath).
213
+ - many thanks to Mr.Schiess.
214
+
215
+ Sun Nov 21 02:51:43 2004 Kuwashima and arton
216
+ *rjb.c
217
+ move dbcs-utf-8 auto conversion feature into riconv.?
218
+ remove JNI version argument from Rjb::load. (bug reported by Mr.Tateishi)
219
+ *load.c
220
+ correct CLASSPATH setting (bad environment name).(bug reported by Mr.Tateishi)
221
+ *riconv.c riconv.h (contributed by Mr.Kuwashima)
222
+ DBCS - utf-8 auto conversion functions.
223
+ *depend MANIFEST
224
+ add riconv.?
225
+ - many tanks to Mr.Kuwashima and Mr.Tateishi.
226
+
227
+ Tue Oct 5 23:08:59 2004 Kuwashima and arton
228
+ *test.rb
229
+ add kanji conversion test
230
+ *rjb.c
231
+ add dbcs(sjis and euc-jp) - utf-8 auto conversion feature.
232
+ the patch was contributed by Mr.Kuwashima, many thanks.
233
+
234
+ Sun Oct 3 18:24:42 2004 arton
235
+ *load.c
236
+ JNIEnv* now using local variable instead of global one.
237
+ Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
238
+ *rjb.c
239
+ JNIEnv* now using local variable instead of global one.
240
+ Because AWT event use a worker thread, and JNI need thread's owned JNIEnv.
241
+ This change was suggested by Mr.Kuwashima, he also tested the behavior,
242
+ and gave me some test codes.
243
+ and attach_current_thread is from Mr.Kuwashima's patch.
244
+ Many thanks to Mr.Kuwashima.
245
+
246
+ Sat Sep 25 03:25:45 2004 arton
247
+ *rjb.c
248
+ implements interface's method argument conversion.
249
+ *test.rb
250
+ add Comparable test (interface with method arguments)
251
+ *Test.java
252
+ add Comparable test method.
253
+
254
+ Wed Sep 22 02:30:15 2004 arton
255
+ *rjb.c
256
+ correct constants load, using mid-class.
257
+ convert null string to nil
258
+
259
+ Wed Sep 22 00:05:32 2004 arton
260
+ *rjb.c
261
+ correct ruby type checking. If the parameter type is java.lang.String, rjb instance is always accepted.
262
+
263
+ Mon Sep 20 22:02:53 2004 arton
264
+ *rjb.c
265
+ checking method/constructor signature with class when the argument is rjb's instance.
266
+ Sun Sep 19 00:54:35 2004 arton
267
+ *rjb.c
268
+ convert Java exception to Ruby's StandardError derived class.
269
+ checking method/constructor signature when invoking if no signatur argument is supplied.
270
+ adding field accessor.
271
+
272
+ Sun Sep 12 21:42:00 2004 arton
273
+ *rjb.c
274
+ call exception description when verbose = true.
275
+ correct recursive import call (for Boolean).
276
+ corrent method not found message creation.
@@ -1,21 +1,21 @@
1
- /* DO NOT EDIT THIS FILE - it is machine generated */
2
- #include <jni.h>
3
- /* Header for class jp_co_infoseek_hp_arton_rjb_RBridge */
4
-
5
- #ifndef _Included_jp_co_infoseek_hp_arton_rjb_RBridge
6
- #define _Included_jp_co_infoseek_hp_arton_rjb_RBridge
7
- #ifdef __cplusplus
8
- extern "C" {
9
- #endif
10
- /*
11
- * Class: jp_co_infoseek_hp_arton_rjb_RBridge
12
- * Method: call
13
- * Signature: (Ljava/lang/String;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
14
- */
15
- JNIEXPORT jobject JNICALL Java_jp_co_infoseek_hp_arton_rjb_RBridge_call
16
- (JNIEnv *, jobject, jstring, jobject, jobjectArray);
17
-
18
- #ifdef __cplusplus
19
- }
20
- #endif
21
- #endif
1
+ /* DO NOT EDIT THIS FILE - it is machine generated */
2
+ #include <jni.h>
3
+ /* Header for class jp_co_infoseek_hp_arton_rjb_RBridge */
4
+
5
+ #ifndef _Included_jp_co_infoseek_hp_arton_rjb_RBridge
6
+ #define _Included_jp_co_infoseek_hp_arton_rjb_RBridge
7
+ #ifdef __cplusplus
8
+ extern "C" {
9
+ #endif
10
+ /*
11
+ * Class: jp_co_infoseek_hp_arton_rjb_RBridge
12
+ * Method: call
13
+ * Signature: (Ljava/lang/String;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
14
+ */
15
+ JNIEXPORT jobject JNICALL Java_jp_co_infoseek_hp_arton_rjb_RBridge_call
16
+ (JNIEnv *, jobject, jstring, jobject, jobjectArray);
17
+
18
+ #ifdef __cplusplus
19
+ }
20
+ #endif
21
+ #endif
data/ext/rjb.c CHANGED
@@ -12,10 +12,10 @@
12
12
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
  * Lesser General Public License for more details.
14
14
  *
15
- * $Id: rjb.c 50 2007-12-28 07:31:33Z arton $
15
+ * $Id: rjb.c 52 2007-12-28 07:44:41Z arton $
16
16
  */
17
17
 
18
- #define RJB_VERSION "1.1.0"
18
+ #define RJB_VERSION "1.1.1"
19
19
 
20
20
  #include "ruby.h"
21
21
  #include "extconf.h"
data/ext/rjb.h CHANGED
@@ -12,7 +12,7 @@
12
12
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
13
  * Lesser General Public License for more details.
14
14
  *
15
- * $Id: rjb.h 47 2007-12-28 06:39:43Z arton $
15
+ * $Id: rjb.h 53 2008-01-09 11:13:33Z arton $
16
16
  * $Log: rjb.h,v $
17
17
  * Revision 1.1 2005/01/16 17:36:10 arton
18
18
  * Initial revision
@@ -29,6 +29,19 @@
29
29
  #endif
30
30
  #endif
31
31
 
32
+ #if !defined(RSTRING_LEN)
33
+ #define RSTRING_LEN(s) (RSTRING(s)->len)
34
+ #endif
35
+ #if !defined(RSTRING_PTR)
36
+ #define RSTRING_PTR(s) (RSTRING(s)->ptr)
37
+ #endif
38
+ #if !defined(RARRAY_LEN)
39
+ #define RARRAY_LEN(s) (RARRAY(s)->len)
40
+ #endif
41
+ #if !defined(RARRAY_PTR)
42
+ #define RARRAY_PTR(s) (RARRAY(s)->ptr)
43
+ #endif
44
+
32
45
  #if !defined(COUNTOF)
33
46
  #define COUNTOF(x) (sizeof(x)/sizeof(x[0]))
34
47
  #endif
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjb
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: x86-mswin32-60
6
6
  authors:
7
7
  - arton
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2007-12-28 00:00:00 +09:00
12
+ date: 2008-01-09 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies: []
15
15