barby-pdf417 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/ext/pdf417/pdf417.c +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
data/ext/pdf417/pdf417.c
CHANGED
@@ -251,7 +251,7 @@ static VALUE rb_pdf417_lib_setYHeight(VALUE self, VALUE yHeight) {
|
|
251
251
|
|
252
252
|
|
253
253
|
// The initialization method for this module
|
254
|
-
void
|
254
|
+
void Init_pdf417_native() {
|
255
255
|
rb_cPdf417 = rb_define_class("Pdf417", rb_cObject); // Our Pdf417 object
|
256
256
|
rb_cPdf417_Lib = rb_define_class_under(rb_cPdf417, "Lib", rb_cObject); // Our Pdf417::Lib object, to represent the C file
|
257
257
|
rb_define_singleton_method(rb_cPdf417_Lib, "new", rb_pdf417_lib_new, 0);
|