Module: GObjectIntrospection
- Defined in:
- lib/gobject-introspection/version.rb,
lib/gobject-introspection.rb,
lib/gobject-introspection.rb,
lib/gobject-introspection/loader.rb,
lib/gobject-introspection/arg-info.rb,
lib/gobject-introspection/type-tag.rb,
lib/gobject-introspection/type-info.rb,
lib/gobject-introspection/boxed-info.rb,
lib/gobject-introspection/repository.rb,
lib/gobject-introspection/union-info.rb,
lib/gobject-introspection/object-info.rb,
lib/gobject-introspection/struct-info.rb,
lib/gobject-introspection/callable-info.rb,
lib/gobject-introspection/function-info.rb,
lib/gobject-introspection/interface-info.rb,
lib/gobject-introspection/collection-reader.rb,
lib/gobject-introspection/registered-type-info.rb,
ext/gobject-introspection/rb-gobject-introspection.c
Overview
Copyright © 2019 Ruby-GNOME Project Team
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Defined Under Namespace
Modules: CollectionReader, Version Classes: ArgInfo, BoxedInfo, CallableInfo, FunctionInfo, InterfaceInfo, Loader, ObjectInfo, RegisteredTypeInfo, Repository, StructInfo, TypeInfo, TypeTag, UnionInfo
Constant Summary collapse
- LOG_DOMAIN =
"GObjectIntrospection"
- BUILD_VERSION =
rb_ary_new3(3, INT2FIX(GI_MAJOR_VERSION), INT2FIX(GI_MINOR_VERSION), INT2FIX(GI_MICRO_VERSION))
Class Method Summary collapse
Class Method Details
.load(namespace, options = {}) ⇒ Object
40 41 42 43 44 45 46 |
# File 'lib/gobject-introspection.rb', line 40 def load(namespace, ={}) base_module = Module.new loader = Loader.new(base_module) loader.version = [:version] loader.load(namespace) base_module end |
.prepend_typelib_path(path) ⇒ Object
21 22 23 24 25 26 27 28 29 30 |
# File 'lib/gobject-introspection.rb', line 21 def prepend_typelib_path(path) path = Pathname(path) unless path.is_a?(Pathname) return unless path.exist? dir = path.to_s dir = dir.gsub("/", File::ALT_SEPARATOR) if File::ALT_SEPARATOR return if Repository.search_path.include?(dir) Repository.prepend_search_path(dir) end |