Sha256: cbd62290e8a08d86a5da9f3436ae6eddf708686f45e4627a54e4f871b3f3d591
Contents?: true
Size: 431 Bytes
Versions: 19
Compression:
Stored size: 431 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
19 entries across 19 versions & 1 rubygems