Sha256: 9375cd29eff8243b7f4b74e4e8aeaa99411e6957e1e4a87962dc081cc08f6f9e
Contents?: true
Size: 1.24 KB
Versions: 16
Compression:
Stored size: 1.24 KB
Contents
begin require 'fox16_c' rescue LoadError # If it's a Windows binary gem, try the <major>.<minor> subdirectory if RUBY_PLATFORM =~/(mswin|mingw)/i major_minor = RUBY_VERSION[ /^(\d+\.\d+)/ ] or raise "Oops, can't extract the major/minor version from #{RUBY_VERSION.dump}" add_dll_path = proc do |path, &block| begin require 'ruby_installer/runtime' RubyInstaller::Runtime.add_dll_directory(path, &block) rescue LoadError old_path = ENV['PATH'] ENV['PATH'] = "#{path};#{old_path}" block.call ENV['PATH'] = old_path end end ruby_plat = RUBY_PLATFORM.gsub("i386", "x86") # Temporary add this directory for DLL search, so that bundled DLLs can be found. ports_bin = File.expand_path("../../ports/#{ruby_plat}/bin", __FILE__) add_dll_path.call(ports_bin) do require "#{major_minor}/fox16_c" end else raise end end require "fox16/core" require "fox16/dict" require "fox16/settings" require "fox16/iterators" require "fox16/keys" require "fox16/aliases" require "fox16/responder2" require "fox16/glgroup" require "fox16/execute_nonmodal" require "fox16/version" require "fox16/kwargs" require "fox16/exceptions_for_fxerror" require "fox16/thread"
Version data entries
16 entries across 16 versions & 1 rubygems