Sha256: 52e368ae575323cd10b612a3977f2522358d93d151ee31c3d432ee0dc6d6789f

Contents?: true

Size: 350 Bytes

Versions: 7

Compression:

Stored size: 350 Bytes

Contents

# support multiple ruby version (fat binaries under windows)
begin
  require 'mysql_api'
rescue LoadError
  if RUBY_PLATFORM =~ /mingw|mswin/ then
    RUBY_VERSION =~ /(\d+.\d+)/
    require "#{$1}/mysql_api"
  end
end

# define version string to be used internally for the Gem by Hoe.
class Mysql
  module GemVersion
    VERSION = '2.8.1'
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
fauna-mysql-2.8.1.1 lib/mysql.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/mysql-2.8.1/lib/mysql.rb
fauna-mysql-2.8.1.2 lib/mysql.rb
fauna-mysql-2.8.1.3 lib/mysql.rb
mysql-2.8.1-x86-mswin32 lib/mysql.rb
mysql-2.8.1-x86-mingw32 lib/mysql.rb
mysql-2.8.1 lib/mysql.rb