Sha256: c7b58423fd10506a79e0e3372b9510c08a1da8410f459b51e2ca4d28572b73ab

Contents?: true

Size: 466 Bytes

Versions: 2

Compression:

Stored size: 466 Bytes

Contents

require 'rubygems'

unless Object.const_defined?('Sequel')
  $:.unshift(File.join(File.dirname(File.expand_path(__FILE__)), "../../lib/"))
  SEQUEL_NO_CORE_EXTENSIONS = true
  require 'sequel/core'
end

Sequel.extension :meta_def

if ENV['SEQUEL_COLUMNS_INTROSPECTION']
  Sequel.extension :columns_introspection
  Sequel::Dataset.introspect_all_columns
end

Sequel.quote_identifiers = false
Sequel.identifier_input_method = nil
Sequel.identifier_output_method = nil

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sequel-3.44.0 spec/core/spec_helper.rb
sequel-3.43.0 spec/core/spec_helper.rb