Sha256: 016aeb9f848b11692574dcb5d679fefce6f4d5e1aea8bce23681b8f8d3c4c80b
Contents?: true
Size: 686 Bytes
Versions: 12
Compression:
Stored size: 686 Bytes
Contents
# frozen_string_literal: true require "gir_ffi/method_setup" module GirFFI # Base module for modules representing GLib namespaces. module ModuleBase include MethodSetup def method_missing(method, *arguments, &block) result = setup_method method.to_s return super unless result send method, *arguments, &block end def respond_to_missing?(method, *) gir_ffi_builder.method_available? method end def const_missing(classname) load_class(classname) end def load_class(classname) gir_ffi_builder.build_namespaced_class classname.to_s end def gir_ffi_builder self::GIR_FFI_BUILDER end end end
Version data entries
12 entries across 12 versions & 1 rubygems