gobject-introspection 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +129 -0
- data/ext/gobject-introspection/depend +10 -0
- data/ext/gobject-introspection/extconf.rb +94 -0
- data/ext/gobject-introspection/gobject_introspection.def +5 -0
- data/ext/gobject-introspection/rb-gi-arg-info.c +151 -0
- data/ext/gobject-introspection/rb-gi-argument.c +2053 -0
- data/ext/gobject-introspection/rb-gi-base-info.c +218 -0
- data/ext/gobject-introspection/rb-gi-boxed-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-callable-info.c +104 -0
- data/ext/gobject-introspection/rb-gi-callback-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-constant-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-constructor-info.c +133 -0
- data/ext/gobject-introspection/rb-gi-conversions.h +145 -0
- data/ext/gobject-introspection/rb-gi-enum-info.c +155 -0
- data/ext/gobject-introspection/rb-gi-field-info.c +153 -0
- data/ext/gobject-introspection/rb-gi-flags-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-function-info.c +841 -0
- data/ext/gobject-introspection/rb-gi-interface-info.c +222 -0
- data/ext/gobject-introspection/rb-gi-loader.c +224 -0
- data/ext/gobject-introspection/rb-gi-method-info.c +83 -0
- data/ext/gobject-introspection/rb-gi-object-info.c +345 -0
- data/ext/gobject-introspection/rb-gi-private.h +105 -0
- data/ext/gobject-introspection/rb-gi-property-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-registered-type-info.c +86 -0
- data/ext/gobject-introspection/rb-gi-repository.c +246 -0
- data/ext/gobject-introspection/rb-gi-signal-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-struct-info.c +202 -0
- data/ext/gobject-introspection/rb-gi-type-info.c +143 -0
- data/ext/gobject-introspection/rb-gi-type-tag.c +43 -0
- data/ext/gobject-introspection/rb-gi-types.h +71 -0
- data/ext/gobject-introspection/rb-gi-union-info.c +206 -0
- data/ext/gobject-introspection/rb-gi-unresolved-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-value-info.c +57 -0
- data/ext/gobject-introspection/rb-gi-vfunc-info.c +91 -0
- data/ext/gobject-introspection/rb-gobject-introspection.c +44 -0
- data/ext/gobject-introspection/rb-gobject-introspection.h +60 -0
- data/extconf.rb +71 -0
- data/lib/2.0/gobject_introspection.so +0 -0
- data/lib/2.1/gobject_introspection.so +0 -0
- data/lib/2.2/gobject_introspection.so +0 -0
- data/lib/gobject-introspection.rb +53 -0
- data/lib/gobject-introspection/boxed-info.rb +28 -0
- data/lib/gobject-introspection/callable-info.rb +100 -0
- data/lib/gobject-introspection/collection-reader.rb +34 -0
- data/lib/gobject-introspection/interface-info.rb +32 -0
- data/lib/gobject-introspection/loader.rb +465 -0
- data/lib/gobject-introspection/object-info.rb +33 -0
- data/lib/gobject-introspection/repository.rb +32 -0
- data/lib/gobject-introspection/struct-info.rb +28 -0
- data/lib/gobject-introspection/union-info.rb +28 -0
- data/test/gobject-introspection-test-utils.rb +26 -0
- data/test/run-test.rb +45 -0
- data/test/test-arg-info.rb +68 -0
- data/test/test-base-info.rb +31 -0
- data/test/test-boxed-info.rb +21 -0
- data/test/test-callable-info.rb +49 -0
- data/test/test-callback-info.rb +29 -0
- data/test/test-constant-info.rb +24 -0
- data/test/test-enum-info.rb +61 -0
- data/test/test-field-type.rb +42 -0
- data/test/test-flags-info.rb +27 -0
- data/test/test-function-info.rb +39 -0
- data/test/test-interface-info.rb +97 -0
- data/test/test-loader.rb +30 -0
- data/test/test-object-info.rb +131 -0
- data/test/test-property-info.rb +38 -0
- data/test/test-registered-type-info.rb +35 -0
- data/test/test-repository.rb +62 -0
- data/test/test-signal-info.rb +40 -0
- data/test/test-struct-info.rb +57 -0
- data/test/test-type-info.rb +62 -0
- data/test/test-type-tag.rb +29 -0
- data/test/test-union-info.rb +21 -0
- data/test/test-value-info.rb +28 -0
- data/test/test-vfunc-info.rb +42 -0
- data/vendor/local/bin/g-ir-compiler.exe +0 -0
- data/vendor/local/bin/g-ir-generate.exe +0 -0
- data/vendor/local/bin/libgirepository-1.0-1.dll +0 -0
- data/vendor/local/include/gobject-introspection-1.0/giarginfo.h +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gibaseinfo.h +120 -0
- data/vendor/local/include/gobject-introspection-1.0/gicallableinfo.h +110 -0
- data/vendor/local/include/gobject-introspection-1.0/giconstantinfo.h +58 -0
- data/vendor/local/include/gobject-introspection-1.0/gienuminfo.h +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gifieldinfo.h +71 -0
- data/vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h +100 -0
- data/vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h +106 -0
- data/vendor/local/include/gobject-introspection-1.0/giobjectinfo.h +207 -0
- data/vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h +56 -0
- data/vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h +64 -0
- data/vendor/local/include/gobject-introspection-1.0/girepository.h +239 -0
- data/vendor/local/include/gobject-introspection-1.0/girffi.h +104 -0
- data/vendor/local/include/gobject-introspection-1.0/gisignalinfo.h +57 -0
- data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +77 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypeinfo.h +87 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypelib.h +80 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypes.h +524 -0
- data/vendor/local/include/gobject-introspection-1.0/giunioninfo.h +84 -0
- data/vendor/local/include/gobject-introspection-1.0/giversionmacros.h +128 -0
- data/vendor/local/include/gobject-introspection-1.0/givfuncinfo.h +73 -0
- data/vendor/local/lib/girepository-1.0/DBus-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GL-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GModule-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GObject-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Gio-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/cairo-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/freetype2-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/libxml2-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/win32-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xfixes-4.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xft-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xlib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xrandr-1.3.typelib +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.py +24 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.py +76 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.py +2161 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.py +1139 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.py +203 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.py +202 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.py +173 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.py +23 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.py +305 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.py +120 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.py +72 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/callback.tmpl +4 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/class.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl +60 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/interface.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl +4 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl +30 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl +21 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/field.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/interface.tmpl +17 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl +38 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl +18 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl +13 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/interface.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl +41 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl +20 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl +61 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +958 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.py +338 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py +529 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.py +593 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.py +612 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py +240 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py +76 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.py +1366 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.py +203 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.py +561 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.py +152 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.py +140 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py +329 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.py +136 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.py +971 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.py +211 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py +156 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo +0 -0
- data/vendor/local/lib/libgirepository-1.0.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.dll.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.la +41 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +26 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +23 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/introspection.m4 +96 -0
- data/vendor/local/share/gir-1.0/DBus-1.0.gir +32 -0
- data/vendor/local/share/gir-1.0/DBusGLib-1.0.gir +18 -0
- data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +4042 -0
- data/vendor/local/share/gir-1.0/GL-1.0.gir +31 -0
- data/vendor/local/share/gir-1.0/GLib-2.0.gir +47221 -0
- data/vendor/local/share/gir-1.0/GModule-2.0.gir +301 -0
- data/vendor/local/share/gir-1.0/GObject-2.0.gir +14733 -0
- data/vendor/local/share/gir-1.0/Gio-2.0.gir +82459 -0
- data/vendor/local/share/gir-1.0/cairo-1.0.gir +70 -0
- data/vendor/local/share/gir-1.0/fontconfig-2.0.gir +18 -0
- data/vendor/local/share/gir-1.0/freetype2-2.0.gir +22 -0
- data/vendor/local/share/gir-1.0/libxml2-2.0.gir +25 -0
- data/vendor/local/share/gir-1.0/win32-1.0.gir +19 -0
- data/vendor/local/share/gir-1.0/xfixes-4.0.gir +10 -0
- data/vendor/local/share/gir-1.0/xft-2.0.gir +23 -0
- data/vendor/local/share/gir-1.0/xlib-2.0.gir +67 -0
- data/vendor/local/share/gir-1.0/xrandr-1.3.gir +16 -0
- data/vendor/local/share/gobject-introspection-1.0/Makefile.introspection +166 -0
- data/vendor/local/share/gobject-introspection-1.0/gdump.c +569 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.c +831 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.h +301 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.c +57 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.h +44 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +1579 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +535 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.c +790 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.h +582 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +5426 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h +1948 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gitestmacros.h +10 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.c +4068 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +1415 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.h +102 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.h +46 -0
- data/vendor/local/share/license/gobject-introspection/AUTHORS +9 -0
- data/vendor/local/share/license/gobject-introspection/COPYING +12 -0
- data/vendor/local/share/man/man1/g-ir-compiler.1 +42 -0
- data/vendor/local/share/man/man1/g-ir-generate.1 +29 -0
- metadata +363 -0
@@ -0,0 +1,47 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2
|
+
#include "config.h"
|
3
|
+
|
4
|
+
#include "utility.h"
|
5
|
+
|
6
|
+
G_DEFINE_TYPE (UtilityObject, utility_object, G_TYPE_OBJECT);
|
7
|
+
|
8
|
+
/**
|
9
|
+
* UtilityBuffer:
|
10
|
+
* @data: (type gpointer): the data
|
11
|
+
*
|
12
|
+
**/
|
13
|
+
|
14
|
+
static void
|
15
|
+
utility_object_class_init (UtilityObjectClass *klass)
|
16
|
+
{
|
17
|
+
|
18
|
+
}
|
19
|
+
|
20
|
+
static void
|
21
|
+
utility_object_init (UtilityObject *object)
|
22
|
+
{
|
23
|
+
|
24
|
+
}
|
25
|
+
|
26
|
+
void
|
27
|
+
utility_object_watch_dir (UtilityObject *object,
|
28
|
+
const char *path,
|
29
|
+
UtilityFileFunc func,
|
30
|
+
gpointer user_data,
|
31
|
+
GDestroyNotify destroy)
|
32
|
+
{
|
33
|
+
|
34
|
+
}
|
35
|
+
|
36
|
+
/**
|
37
|
+
* utility_dir_foreach:
|
38
|
+
* @path::
|
39
|
+
* @func: (scope call):
|
40
|
+
* @user_data::
|
41
|
+
*
|
42
|
+
*/
|
43
|
+
void
|
44
|
+
utility_dir_foreach (const char *path, UtilityFileFunc func, gpointer user_data)
|
45
|
+
{
|
46
|
+
|
47
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
#ifndef __UTILITY_H__
|
2
|
+
#define __UTILITY_H__
|
3
|
+
|
4
|
+
#include <glib-object.h>
|
5
|
+
|
6
|
+
#include "gitestmacros.h"
|
7
|
+
|
8
|
+
#define UTILITY_TYPE_OBJECT (utility_object_get_type ())
|
9
|
+
#define UTILITY_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), UTILITY_TYPE_OBJECT, UtilityObject))
|
10
|
+
#define UTILITY_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), UTILITY_TYPE_OBJECT))
|
11
|
+
|
12
|
+
typedef struct _UtilityObject UtilityObject;
|
13
|
+
typedef struct _UtilityObjectClass UtilityObjectClass;
|
14
|
+
|
15
|
+
struct _UtilityObject
|
16
|
+
{
|
17
|
+
GObject parent_instance;
|
18
|
+
};
|
19
|
+
|
20
|
+
struct _UtilityObjectClass
|
21
|
+
{
|
22
|
+
GObjectClass parent_class;
|
23
|
+
};
|
24
|
+
|
25
|
+
/* This one is similar to Pango.Glyph */
|
26
|
+
typedef guint32 UtilityGlyph;
|
27
|
+
|
28
|
+
typedef struct
|
29
|
+
{
|
30
|
+
int tag;
|
31
|
+
union
|
32
|
+
{
|
33
|
+
gpointer v_pointer;
|
34
|
+
double v_real;
|
35
|
+
long v_integer;
|
36
|
+
} value;
|
37
|
+
} UtilityTaggedValue;
|
38
|
+
|
39
|
+
typedef union
|
40
|
+
{
|
41
|
+
guint8 value;
|
42
|
+
struct
|
43
|
+
{
|
44
|
+
guint8 first_nibble : 4;
|
45
|
+
guint8 second_nibble : 4;
|
46
|
+
} parts;
|
47
|
+
} UtilityByte;
|
48
|
+
|
49
|
+
/* This one is similiar to Soup.Buffer */
|
50
|
+
typedef struct
|
51
|
+
{
|
52
|
+
const char *data;
|
53
|
+
gsize length;
|
54
|
+
} UtilityBuffer;
|
55
|
+
|
56
|
+
typedef void (*UtilityFileFunc)(const char *path, gpointer user_data);
|
57
|
+
|
58
|
+
|
59
|
+
_GI_TEST_EXTERN
|
60
|
+
GType utility_object_get_type (void) G_GNUC_CONST;
|
61
|
+
|
62
|
+
_GI_TEST_EXTERN
|
63
|
+
void utility_object_watch_dir (UtilityObject *object,
|
64
|
+
const char *path,
|
65
|
+
UtilityFileFunc func,
|
66
|
+
gpointer user_data,
|
67
|
+
GDestroyNotify destroy);
|
68
|
+
|
69
|
+
typedef enum
|
70
|
+
{
|
71
|
+
UTILITY_ENUM_A,
|
72
|
+
UTILITY_ENUM_B,
|
73
|
+
UTILITY_ENUM_C
|
74
|
+
} UtilityEnumType;
|
75
|
+
|
76
|
+
/* The shift operators here should imply bitfield */
|
77
|
+
typedef enum
|
78
|
+
{
|
79
|
+
UTILITY_FLAG_A = 1 << 0,
|
80
|
+
UTILITY_FLAG_B = 1 << 1,
|
81
|
+
UTILITY_FLAG_C = 1 << 2
|
82
|
+
} UtilityFlagType;
|
83
|
+
|
84
|
+
typedef struct
|
85
|
+
{
|
86
|
+
int field;
|
87
|
+
guint bitfield1 : 3;
|
88
|
+
guint bitfield2 : 2;
|
89
|
+
guint8 data[16];
|
90
|
+
} UtilityStruct;
|
91
|
+
|
92
|
+
typedef union
|
93
|
+
{
|
94
|
+
char *pointer;
|
95
|
+
glong integer;
|
96
|
+
double real;
|
97
|
+
} UtilityUnion;
|
98
|
+
|
99
|
+
_GI_TEST_EXTERN
|
100
|
+
void utility_dir_foreach (const char *path, UtilityFileFunc func, gpointer user_data);
|
101
|
+
|
102
|
+
#endif /* __UTILITY_H__ */
|
@@ -0,0 +1,47 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2
|
+
|
3
|
+
#include "config.h"
|
4
|
+
|
5
|
+
#include "warnlib.h"
|
6
|
+
|
7
|
+
GQuark
|
8
|
+
warnlib_unpaired_error_quark (void)
|
9
|
+
{
|
10
|
+
return g_quark_from_static_string ("warnlib-unpaired-error");
|
11
|
+
}
|
12
|
+
|
13
|
+
gboolean
|
14
|
+
warnlib_throw_unpaired (GError **error)
|
15
|
+
{
|
16
|
+
g_set_error_literal (error, warnlib_unpaired_error_quark (), 0,
|
17
|
+
"Unpaired error");
|
18
|
+
return FALSE;
|
19
|
+
}
|
20
|
+
|
21
|
+
typedef WarnLibWhateverIface WarnLibWhateverInterface;
|
22
|
+
G_DEFINE_INTERFACE (WarnLibWhatever, warnlib_whatever, G_TYPE_OBJECT)
|
23
|
+
|
24
|
+
static void
|
25
|
+
warnlib_whatever_default_init(WarnLibWhateverIface *iface)
|
26
|
+
{
|
27
|
+
}
|
28
|
+
|
29
|
+
void
|
30
|
+
warnlib_whatever_do_moo (WarnLibWhatever *self, int x, gpointer y)
|
31
|
+
{
|
32
|
+
WARNLIB_WHATEVER_GET_IFACE(self)->do_moo (self, x, y);
|
33
|
+
}
|
34
|
+
|
35
|
+
/**
|
36
|
+
* warnlib_whatever_do_boo:
|
37
|
+
* @self: a WarnLibWhatever
|
38
|
+
* @x: x parameter
|
39
|
+
* @y: y parameter
|
40
|
+
*
|
41
|
+
* Does boo.
|
42
|
+
*/
|
43
|
+
void
|
44
|
+
warnlib_whatever_do_boo (WarnLibWhatever *self, int x, gpointer y)
|
45
|
+
{
|
46
|
+
WARNLIB_WHATEVER_GET_IFACE(self)->do_boo (self, x, y);
|
47
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
2
|
+
|
3
|
+
#ifndef __WARNLIB_H__
|
4
|
+
#define __WARNLIB_H__
|
5
|
+
|
6
|
+
#include <gio/gio.h>
|
7
|
+
|
8
|
+
#include "gitestmacros.h"
|
9
|
+
|
10
|
+
#define WARNLIB_UNPAIRED_ERROR (warnlib_unpaired_error_quark ())
|
11
|
+
_GI_TEST_EXTERN
|
12
|
+
GQuark warnlib_unpaired_error_quark (void);
|
13
|
+
|
14
|
+
_GI_TEST_EXTERN
|
15
|
+
gboolean warnlib_throw_unpaired (GError **error);
|
16
|
+
|
17
|
+
/* interface */
|
18
|
+
#define WARNLIB_TYPE_WHATEVER (warnlib_whatever_get_type ())
|
19
|
+
#define WARNLIB_WHATEVER(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), WARNLIB_TYPE_WHATEVER, WarnLibWhatever))
|
20
|
+
#define WARNLIB_IS_WHATEVER(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), WARNLIB_TYPE_WHATEVER))
|
21
|
+
#define WARNLIB_WHATEVER_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), WARNLIB_TYPE_WHATEVER, WarnLibWhateverIface))
|
22
|
+
|
23
|
+
typedef struct _WarnLibWhateverIface WarnLibWhateverIface;
|
24
|
+
typedef struct _WarnLibWhatever WarnLibWhatever;
|
25
|
+
|
26
|
+
struct _WarnLibWhateverIface
|
27
|
+
{
|
28
|
+
GTypeInterface parent_iface;
|
29
|
+
|
30
|
+
/* virtual table */
|
31
|
+
|
32
|
+
/* explicitly test un-named parameters */
|
33
|
+
void (*do_moo) (WarnLibWhatever *self, int, gpointer);
|
34
|
+
|
35
|
+
void (*do_boo) (WarnLibWhatever *self, int x, gpointer y);
|
36
|
+
};
|
37
|
+
|
38
|
+
_GI_TEST_EXTERN
|
39
|
+
void warnlib_whatever_do_moo (WarnLibWhatever *self, int, gpointer);
|
40
|
+
_GI_TEST_EXTERN
|
41
|
+
void warnlib_whatever_do_boo (WarnLibWhatever *self, int, gpointer);
|
42
|
+
|
43
|
+
_GI_TEST_EXTERN
|
44
|
+
GType warnlib_whatever_get_type (void) G_GNUC_CONST;
|
45
|
+
|
46
|
+
#endif
|
@@ -0,0 +1,12 @@
|
|
1
|
+
gobject-introspection has two licenses; one for the typelib library,
|
2
|
+
and one for the tools.
|
3
|
+
|
4
|
+
The scanner (giscanner/) and typelib libraries (girepository/) are
|
5
|
+
licensed under the LGPLv2+. See the file COPYING.LGPL.
|
6
|
+
|
7
|
+
The tools (tools/) are licensed under the GPLv2+. See the file COPYING.GPL.
|
8
|
+
|
9
|
+
There is also some MIT code in giscanner/. In general where
|
10
|
+
applicable files should have headers denoting their license status; if
|
11
|
+
they do not, please file a bug at http://bugzilla.gnome.org.
|
12
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
.TH "g-ir-compiler" 1
|
2
|
+
.SH NAME
|
3
|
+
g-ir-compiler \- typelib compiler.
|
4
|
+
.SH SYNOPSIS
|
5
|
+
.B g-ir-compiler
|
6
|
+
[OPTION...] GIRFILE
|
7
|
+
.SH DESCRIPTION
|
8
|
+
g-ir-compiler converts one or more GIR files into one or more typelib.
|
9
|
+
The output will be written to standard output unless the --output
|
10
|
+
is specified.
|
11
|
+
.SH OPTIONS
|
12
|
+
.TP
|
13
|
+
.B \---help
|
14
|
+
Show help options
|
15
|
+
.TP
|
16
|
+
.B \, ---output=FILENAME
|
17
|
+
Save the resulting output in FILENAME.
|
18
|
+
.TP
|
19
|
+
.B \---verbose
|
20
|
+
Show verbose messages
|
21
|
+
.TP
|
22
|
+
.B \---debug
|
23
|
+
Show debug messages
|
24
|
+
.TP
|
25
|
+
.B \---includedir=DIRECTORY
|
26
|
+
Adds a directory which will be used to find includes inside the GIR format.
|
27
|
+
.TP
|
28
|
+
.B \---module=MODULE
|
29
|
+
FIXME
|
30
|
+
.TP
|
31
|
+
.B \---shared-library=FILENAME
|
32
|
+
Specifies the shared library where the symbols in the typelib can be found.
|
33
|
+
The name of the library should not contain the leading lib prefix nor
|
34
|
+
the ending shared library suffix.
|
35
|
+
.TP
|
36
|
+
.SH BUGS
|
37
|
+
Report bugs at http://bugzilla.gnome.org/ in the glib product and
|
38
|
+
introspection component.
|
39
|
+
.SH HOMEPAGE and CONTACT
|
40
|
+
http://live.gnome.org/GObjectIntrospection
|
41
|
+
.SH AUTHORS
|
42
|
+
Mattias Clasen
|
@@ -0,0 +1,29 @@
|
|
1
|
+
.TH "g-ir-generate" 1
|
2
|
+
.SH NAME
|
3
|
+
g-ir-generate \- typelib generator
|
4
|
+
.SH SYNOPSIS
|
5
|
+
.B g-ir-generate
|
6
|
+
[OPTION...] FILES...
|
7
|
+
.SH DESCRIPTION
|
8
|
+
g-idl-generate is an GIR generator, using the repository API. It generates
|
9
|
+
GIR files from a raw typelib or in a shared library (--shlib).
|
10
|
+
The output will be written to standard output unless the --output
|
11
|
+
is specified.
|
12
|
+
.SH OPTIONS
|
13
|
+
.TP
|
14
|
+
.B \, --help
|
15
|
+
Show help options
|
16
|
+
.TP
|
17
|
+
.B \, --shlib=FILENAME
|
18
|
+
The shared library to read the symbols from.
|
19
|
+
.TP
|
20
|
+
.B \, --output=FILENAME
|
21
|
+
Save the resulting output in FILENAME.
|
22
|
+
.TP
|
23
|
+
.SH BUGS
|
24
|
+
Report bugs at http://bugzilla.gnome.org/ in the glib product and
|
25
|
+
introspection component.
|
26
|
+
.SH HOMEPAGE and CONTACT
|
27
|
+
http://live.gnome.org/GObjectIntrospection
|
28
|
+
.SH AUTHORS
|
29
|
+
Mattias Clasen
|
metadata
ADDED
@@ -0,0 +1,363 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gobject-introspection
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 2.2.4
|
5
|
+
platform: x64-mingw32
|
6
|
+
authors:
|
7
|
+
- The Ruby-GNOME2 Project Team
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-12-23 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: glib2
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 2.2.4
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 2.2.4
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: test-unit
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '2'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '2'
|
41
|
+
description: Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.
|
42
|
+
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
43
|
+
executables: []
|
44
|
+
extensions: []
|
45
|
+
extra_rdoc_files: []
|
46
|
+
files:
|
47
|
+
- Rakefile
|
48
|
+
- ext/gobject-introspection/depend
|
49
|
+
- ext/gobject-introspection/extconf.rb
|
50
|
+
- ext/gobject-introspection/gobject_introspection.def
|
51
|
+
- ext/gobject-introspection/rb-gi-arg-info.c
|
52
|
+
- ext/gobject-introspection/rb-gi-argument.c
|
53
|
+
- ext/gobject-introspection/rb-gi-base-info.c
|
54
|
+
- ext/gobject-introspection/rb-gi-boxed-info.c
|
55
|
+
- ext/gobject-introspection/rb-gi-callable-info.c
|
56
|
+
- ext/gobject-introspection/rb-gi-callback-info.c
|
57
|
+
- ext/gobject-introspection/rb-gi-constant-info.c
|
58
|
+
- ext/gobject-introspection/rb-gi-constructor-info.c
|
59
|
+
- ext/gobject-introspection/rb-gi-conversions.h
|
60
|
+
- ext/gobject-introspection/rb-gi-enum-info.c
|
61
|
+
- ext/gobject-introspection/rb-gi-field-info.c
|
62
|
+
- ext/gobject-introspection/rb-gi-flags-info.c
|
63
|
+
- ext/gobject-introspection/rb-gi-function-info.c
|
64
|
+
- ext/gobject-introspection/rb-gi-interface-info.c
|
65
|
+
- ext/gobject-introspection/rb-gi-loader.c
|
66
|
+
- ext/gobject-introspection/rb-gi-method-info.c
|
67
|
+
- ext/gobject-introspection/rb-gi-object-info.c
|
68
|
+
- ext/gobject-introspection/rb-gi-private.h
|
69
|
+
- ext/gobject-introspection/rb-gi-property-info.c
|
70
|
+
- ext/gobject-introspection/rb-gi-registered-type-info.c
|
71
|
+
- ext/gobject-introspection/rb-gi-repository.c
|
72
|
+
- ext/gobject-introspection/rb-gi-signal-info.c
|
73
|
+
- ext/gobject-introspection/rb-gi-struct-info.c
|
74
|
+
- ext/gobject-introspection/rb-gi-type-info.c
|
75
|
+
- ext/gobject-introspection/rb-gi-type-tag.c
|
76
|
+
- ext/gobject-introspection/rb-gi-types.h
|
77
|
+
- ext/gobject-introspection/rb-gi-union-info.c
|
78
|
+
- ext/gobject-introspection/rb-gi-unresolved-info.c
|
79
|
+
- ext/gobject-introspection/rb-gi-value-info.c
|
80
|
+
- ext/gobject-introspection/rb-gi-vfunc-info.c
|
81
|
+
- ext/gobject-introspection/rb-gobject-introspection.c
|
82
|
+
- ext/gobject-introspection/rb-gobject-introspection.h
|
83
|
+
- extconf.rb
|
84
|
+
- lib/2.0/gobject_introspection.so
|
85
|
+
- lib/2.1/gobject_introspection.so
|
86
|
+
- lib/2.2/gobject_introspection.so
|
87
|
+
- lib/gobject-introspection.rb
|
88
|
+
- lib/gobject-introspection/boxed-info.rb
|
89
|
+
- lib/gobject-introspection/callable-info.rb
|
90
|
+
- lib/gobject-introspection/collection-reader.rb
|
91
|
+
- lib/gobject-introspection/interface-info.rb
|
92
|
+
- lib/gobject-introspection/loader.rb
|
93
|
+
- lib/gobject-introspection/object-info.rb
|
94
|
+
- lib/gobject-introspection/repository.rb
|
95
|
+
- lib/gobject-introspection/struct-info.rb
|
96
|
+
- lib/gobject-introspection/union-info.rb
|
97
|
+
- test/gobject-introspection-test-utils.rb
|
98
|
+
- test/run-test.rb
|
99
|
+
- test/test-arg-info.rb
|
100
|
+
- test/test-base-info.rb
|
101
|
+
- test/test-boxed-info.rb
|
102
|
+
- test/test-callable-info.rb
|
103
|
+
- test/test-callback-info.rb
|
104
|
+
- test/test-constant-info.rb
|
105
|
+
- test/test-enum-info.rb
|
106
|
+
- test/test-field-type.rb
|
107
|
+
- test/test-flags-info.rb
|
108
|
+
- test/test-function-info.rb
|
109
|
+
- test/test-interface-info.rb
|
110
|
+
- test/test-loader.rb
|
111
|
+
- test/test-object-info.rb
|
112
|
+
- test/test-property-info.rb
|
113
|
+
- test/test-registered-type-info.rb
|
114
|
+
- test/test-repository.rb
|
115
|
+
- test/test-signal-info.rb
|
116
|
+
- test/test-struct-info.rb
|
117
|
+
- test/test-type-info.rb
|
118
|
+
- test/test-type-tag.rb
|
119
|
+
- test/test-union-info.rb
|
120
|
+
- test/test-value-info.rb
|
121
|
+
- test/test-vfunc-info.rb
|
122
|
+
- vendor/local/bin/g-ir-compiler.exe
|
123
|
+
- vendor/local/bin/g-ir-generate.exe
|
124
|
+
- vendor/local/bin/libgirepository-1.0-1.dll
|
125
|
+
- vendor/local/include/gobject-introspection-1.0/giarginfo.h
|
126
|
+
- vendor/local/include/gobject-introspection-1.0/gibaseinfo.h
|
127
|
+
- vendor/local/include/gobject-introspection-1.0/gicallableinfo.h
|
128
|
+
- vendor/local/include/gobject-introspection-1.0/giconstantinfo.h
|
129
|
+
- vendor/local/include/gobject-introspection-1.0/gienuminfo.h
|
130
|
+
- vendor/local/include/gobject-introspection-1.0/gifieldinfo.h
|
131
|
+
- vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h
|
132
|
+
- vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h
|
133
|
+
- vendor/local/include/gobject-introspection-1.0/giobjectinfo.h
|
134
|
+
- vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h
|
135
|
+
- vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h
|
136
|
+
- vendor/local/include/gobject-introspection-1.0/girepository.h
|
137
|
+
- vendor/local/include/gobject-introspection-1.0/girffi.h
|
138
|
+
- vendor/local/include/gobject-introspection-1.0/gisignalinfo.h
|
139
|
+
- vendor/local/include/gobject-introspection-1.0/gistructinfo.h
|
140
|
+
- vendor/local/include/gobject-introspection-1.0/gitypeinfo.h
|
141
|
+
- vendor/local/include/gobject-introspection-1.0/gitypelib.h
|
142
|
+
- vendor/local/include/gobject-introspection-1.0/gitypes.h
|
143
|
+
- vendor/local/include/gobject-introspection-1.0/giunioninfo.h
|
144
|
+
- vendor/local/include/gobject-introspection-1.0/giversionmacros.h
|
145
|
+
- vendor/local/include/gobject-introspection-1.0/givfuncinfo.h
|
146
|
+
- vendor/local/lib/girepository-1.0/DBus-1.0.typelib
|
147
|
+
- vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib
|
148
|
+
- vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib
|
149
|
+
- vendor/local/lib/girepository-1.0/GL-1.0.typelib
|
150
|
+
- vendor/local/lib/girepository-1.0/GLib-2.0.typelib
|
151
|
+
- vendor/local/lib/girepository-1.0/GModule-2.0.typelib
|
152
|
+
- vendor/local/lib/girepository-1.0/GObject-2.0.typelib
|
153
|
+
- vendor/local/lib/girepository-1.0/Gio-2.0.typelib
|
154
|
+
- vendor/local/lib/girepository-1.0/cairo-1.0.typelib
|
155
|
+
- vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib
|
156
|
+
- vendor/local/lib/girepository-1.0/freetype2-2.0.typelib
|
157
|
+
- vendor/local/lib/girepository-1.0/libxml2-2.0.typelib
|
158
|
+
- vendor/local/lib/girepository-1.0/win32-1.0.typelib
|
159
|
+
- vendor/local/lib/girepository-1.0/xfixes-4.0.typelib
|
160
|
+
- vendor/local/lib/girepository-1.0/xft-2.0.typelib
|
161
|
+
- vendor/local/lib/girepository-1.0/xlib-2.0.typelib
|
162
|
+
- vendor/local/lib/girepository-1.0/xrandr-1.3.typelib
|
163
|
+
- vendor/local/lib/gobject-introspection/giscanner/__init__.py
|
164
|
+
- vendor/local/lib/gobject-introspection/giscanner/__init__.pyc
|
165
|
+
- vendor/local/lib/gobject-introspection/giscanner/__init__.pyo
|
166
|
+
- vendor/local/lib/gobject-introspection/giscanner/annotationmain.py
|
167
|
+
- vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc
|
168
|
+
- vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo
|
169
|
+
- vendor/local/lib/gobject-introspection/giscanner/annotationparser.py
|
170
|
+
- vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc
|
171
|
+
- vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo
|
172
|
+
- vendor/local/lib/gobject-introspection/giscanner/ast.py
|
173
|
+
- vendor/local/lib/gobject-introspection/giscanner/ast.pyc
|
174
|
+
- vendor/local/lib/gobject-introspection/giscanner/ast.pyo
|
175
|
+
- vendor/local/lib/gobject-introspection/giscanner/cachestore.py
|
176
|
+
- vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc
|
177
|
+
- vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo
|
178
|
+
- vendor/local/lib/gobject-introspection/giscanner/ccompiler.py
|
179
|
+
- vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyc
|
180
|
+
- vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyo
|
181
|
+
- vendor/local/lib/gobject-introspection/giscanner/codegen.py
|
182
|
+
- vendor/local/lib/gobject-introspection/giscanner/codegen.pyc
|
183
|
+
- vendor/local/lib/gobject-introspection/giscanner/codegen.pyo
|
184
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/__init__.py
|
185
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyc
|
186
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyo
|
187
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/counter.py
|
188
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyc
|
189
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyo
|
190
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.py
|
191
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyc
|
192
|
+
- vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyo
|
193
|
+
- vendor/local/lib/gobject-introspection/giscanner/docmain.py
|
194
|
+
- vendor/local/lib/gobject-introspection/giscanner/docmain.pyc
|
195
|
+
- vendor/local/lib/gobject-introspection/giscanner/docmain.pyo
|
196
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/callback.tmpl
|
197
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/class.tmpl
|
198
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl
|
199
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl
|
200
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl
|
201
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/field.tmpl
|
202
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl
|
203
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/interface.tmpl
|
204
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl
|
205
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl
|
206
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl
|
207
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl
|
208
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl
|
209
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl
|
210
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/callback.tmpl
|
211
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl
|
212
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl
|
213
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl
|
214
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl
|
215
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/field.tmpl
|
216
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl
|
217
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/interface.tmpl
|
218
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl
|
219
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl
|
220
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl
|
221
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl
|
222
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl
|
223
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl
|
224
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/callback.tmpl
|
225
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl
|
226
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl
|
227
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl
|
228
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl
|
229
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/field.tmpl
|
230
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl
|
231
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/interface.tmpl
|
232
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl
|
233
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl
|
234
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl
|
235
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl
|
236
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl
|
237
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl
|
238
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl
|
239
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl
|
240
|
+
- vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl
|
241
|
+
- vendor/local/lib/gobject-introspection/giscanner/docwriter.py
|
242
|
+
- vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc
|
243
|
+
- vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo
|
244
|
+
- vendor/local/lib/gobject-introspection/giscanner/dumper.py
|
245
|
+
- vendor/local/lib/gobject-introspection/giscanner/dumper.pyc
|
246
|
+
- vendor/local/lib/gobject-introspection/giscanner/dumper.pyo
|
247
|
+
- vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py
|
248
|
+
- vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc
|
249
|
+
- vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo
|
250
|
+
- vendor/local/lib/gobject-introspection/giscanner/girparser.py
|
251
|
+
- vendor/local/lib/gobject-introspection/giscanner/girparser.pyc
|
252
|
+
- vendor/local/lib/gobject-introspection/giscanner/girparser.pyo
|
253
|
+
- vendor/local/lib/gobject-introspection/giscanner/girwriter.py
|
254
|
+
- vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc
|
255
|
+
- vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo
|
256
|
+
- vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py
|
257
|
+
- vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc
|
258
|
+
- vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo
|
259
|
+
- vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py
|
260
|
+
- vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc
|
261
|
+
- vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo
|
262
|
+
- vendor/local/lib/gobject-introspection/giscanner/maintransformer.py
|
263
|
+
- vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc
|
264
|
+
- vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo
|
265
|
+
- vendor/local/lib/gobject-introspection/giscanner/message.py
|
266
|
+
- vendor/local/lib/gobject-introspection/giscanner/message.pyc
|
267
|
+
- vendor/local/lib/gobject-introspection/giscanner/message.pyo
|
268
|
+
- vendor/local/lib/gobject-introspection/giscanner/scannermain.py
|
269
|
+
- vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc
|
270
|
+
- vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo
|
271
|
+
- vendor/local/lib/gobject-introspection/giscanner/sectionparser.py
|
272
|
+
- vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc
|
273
|
+
- vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo
|
274
|
+
- vendor/local/lib/gobject-introspection/giscanner/shlibs.py
|
275
|
+
- vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc
|
276
|
+
- vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo
|
277
|
+
- vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py
|
278
|
+
- vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc
|
279
|
+
- vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo
|
280
|
+
- vendor/local/lib/gobject-introspection/giscanner/testcodegen.py
|
281
|
+
- vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc
|
282
|
+
- vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo
|
283
|
+
- vendor/local/lib/gobject-introspection/giscanner/transformer.py
|
284
|
+
- vendor/local/lib/gobject-introspection/giscanner/transformer.pyc
|
285
|
+
- vendor/local/lib/gobject-introspection/giscanner/transformer.pyo
|
286
|
+
- vendor/local/lib/gobject-introspection/giscanner/utils.py
|
287
|
+
- vendor/local/lib/gobject-introspection/giscanner/utils.pyc
|
288
|
+
- vendor/local/lib/gobject-introspection/giscanner/utils.pyo
|
289
|
+
- vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py
|
290
|
+
- vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc
|
291
|
+
- vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo
|
292
|
+
- vendor/local/lib/libgirepository-1.0.a
|
293
|
+
- vendor/local/lib/libgirepository-1.0.dll.a
|
294
|
+
- vendor/local/lib/libgirepository-1.0.la
|
295
|
+
- vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc
|
296
|
+
- vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc
|
297
|
+
- vendor/local/lib/pkgconfig/patched
|
298
|
+
- vendor/local/share/aclocal/introspection.m4
|
299
|
+
- vendor/local/share/gir-1.0/DBus-1.0.gir
|
300
|
+
- vendor/local/share/gir-1.0/DBusGLib-1.0.gir
|
301
|
+
- vendor/local/share/gir-1.0/GIRepository-2.0.gir
|
302
|
+
- vendor/local/share/gir-1.0/GL-1.0.gir
|
303
|
+
- vendor/local/share/gir-1.0/GLib-2.0.gir
|
304
|
+
- vendor/local/share/gir-1.0/GModule-2.0.gir
|
305
|
+
- vendor/local/share/gir-1.0/GObject-2.0.gir
|
306
|
+
- vendor/local/share/gir-1.0/Gio-2.0.gir
|
307
|
+
- vendor/local/share/gir-1.0/cairo-1.0.gir
|
308
|
+
- vendor/local/share/gir-1.0/fontconfig-2.0.gir
|
309
|
+
- vendor/local/share/gir-1.0/freetype2-2.0.gir
|
310
|
+
- vendor/local/share/gir-1.0/libxml2-2.0.gir
|
311
|
+
- vendor/local/share/gir-1.0/win32-1.0.gir
|
312
|
+
- vendor/local/share/gir-1.0/xfixes-4.0.gir
|
313
|
+
- vendor/local/share/gir-1.0/xft-2.0.gir
|
314
|
+
- vendor/local/share/gir-1.0/xlib-2.0.gir
|
315
|
+
- vendor/local/share/gir-1.0/xrandr-1.3.gir
|
316
|
+
- vendor/local/share/gobject-introspection-1.0/Makefile.introspection
|
317
|
+
- vendor/local/share/gobject-introspection-1.0/gdump.c
|
318
|
+
- vendor/local/share/gobject-introspection-1.0/tests/annotation.c
|
319
|
+
- vendor/local/share/gobject-introspection-1.0/tests/annotation.h
|
320
|
+
- vendor/local/share/gobject-introspection-1.0/tests/drawable.c
|
321
|
+
- vendor/local/share/gobject-introspection-1.0/tests/drawable.h
|
322
|
+
- vendor/local/share/gobject-introspection-1.0/tests/everything.c
|
323
|
+
- vendor/local/share/gobject-introspection-1.0/tests/everything.h
|
324
|
+
- vendor/local/share/gobject-introspection-1.0/tests/foo.c
|
325
|
+
- vendor/local/share/gobject-introspection-1.0/tests/foo.h
|
326
|
+
- vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c
|
327
|
+
- vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h
|
328
|
+
- vendor/local/share/gobject-introspection-1.0/tests/gitestmacros.h
|
329
|
+
- vendor/local/share/gobject-introspection-1.0/tests/regress.c
|
330
|
+
- vendor/local/share/gobject-introspection-1.0/tests/regress.h
|
331
|
+
- vendor/local/share/gobject-introspection-1.0/tests/utility.c
|
332
|
+
- vendor/local/share/gobject-introspection-1.0/tests/utility.h
|
333
|
+
- vendor/local/share/gobject-introspection-1.0/tests/warnlib.c
|
334
|
+
- vendor/local/share/gobject-introspection-1.0/tests/warnlib.h
|
335
|
+
- vendor/local/share/license/gobject-introspection/AUTHORS
|
336
|
+
- vendor/local/share/license/gobject-introspection/COPYING
|
337
|
+
- vendor/local/share/man/man1/g-ir-compiler.1
|
338
|
+
- vendor/local/share/man/man1/g-ir-generate.1
|
339
|
+
homepage: http://ruby-gnome2.sourceforge.jp/
|
340
|
+
licenses:
|
341
|
+
- LGPLv2.1 or later
|
342
|
+
metadata: {}
|
343
|
+
post_install_message:
|
344
|
+
rdoc_options: []
|
345
|
+
require_paths:
|
346
|
+
- lib
|
347
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
348
|
+
requirements:
|
349
|
+
- - ">="
|
350
|
+
- !ruby/object:Gem::Version
|
351
|
+
version: 1.9.3
|
352
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
353
|
+
requirements:
|
354
|
+
- - ">="
|
355
|
+
- !ruby/object:Gem::Version
|
356
|
+
version: '0'
|
357
|
+
requirements: []
|
358
|
+
rubyforge_project:
|
359
|
+
rubygems_version: 2.2.2
|
360
|
+
signing_key:
|
361
|
+
specification_version: 4
|
362
|
+
summary: Ruby/GObjectIntrospection is a Ruby binding of GObjectIntrospection.
|
363
|
+
test_files: []
|