Sha256: cbef60a39c264037156700fea590352efaeb34be40865e1f6d84981082596ff1
Contents?: true
Size: 449 Bytes
Versions: 7
Compression:
Stored size: 449 Bytes
Contents
# Copyright (c) 2023 M.J.N. Corino, The Netherlands # # This software is released under the MIT license. # Constant extension loader for Wx::RTC module Wx::RTC if !defined?(::WxGlobalConstants) def self.const_missing(sym) Wx.check_delayed_constant(self, sym) super end end end Dir.glob(File.join(File.dirname(__FILE__), 'ext', '*.rb')) do | fpath | require_relative './ext/' + File.basename(fpath) end
Version data entries
7 entries across 7 versions & 1 rubygems