Sha256: 0c0df454b1432515d1d6af4ac4edc51c87bf1a80142d8f04a4343f0feb28d7ce
Contents?: true
Size: 1.23 KB
Versions: 15
Compression:
Stored size: 1.23 KB
Contents
# encoding: UTF-8 require 'date' require 'bigdecimal' require 'rational' require 'tiny_tds/version' require 'tiny_tds/error' require 'tiny_tds/client' require 'tiny_tds/result' # Support multiple ruby versions, fat binaries under Windows. if RUBY_PLATFORM =~ /mingw|mswin/ && RUBY_VERSION =~ /(\d+.\d+)/ ver = Regexp.last_match(1) # Set the PATH environment variable, so that the DLLs can be found. old_path = ENV['PATH'] begin # Do the same host consolidation as in extconf.rb ports_dir = RbConfig::CONFIG['host'].gsub('i686-pc-mingw32', 'i686-w64-mingw32') ENV['PATH'] = "#{File.expand_path("../../ports/#{ports_dir}/bin", __FILE__)};#{old_path}" require "tiny_tds/#{ver}/tiny_tds" rescue LoadError require 'tiny_tds/tiny_tds' ensure ENV['PATH'] = old_path end else # Load dependent shared libraries into the process, so that they are already present, # when tiny_tds.so is loaded. This ensures, that shared libraries are loaded even when # the path is different between build and run time (e.g. Heroku). ports_libs = File.expand_path("../../ports/#{RbConfig::CONFIG['host']}/lib/*.so", __FILE__) Dir[ports_libs].each do |lib| require 'fiddle' Fiddle.dlopen(lib) end require 'tiny_tds/tiny_tds' end
Version data entries
15 entries across 15 versions & 1 rubygems