mirror of
https://github.com/heartcombo/devise.git
synced 2026-01-10 07:18:14 -05:00
19 lines
486 B
Ruby
19 lines
486 B
Ruby
unless defined?(DEVISE_ORM)
|
|
DEVISE_ORM = (ENV["DEVISE_ORM"] || :active_record).to_sym
|
|
end
|
|
|
|
module Devise
|
|
# Detection for minor differences between Rails 4 and 5, and 5.1 in tests.
|
|
def self.rails51?
|
|
Rails.version.start_with? '5.1'
|
|
end
|
|
|
|
def self.rails5?
|
|
Rails.version.start_with? '5'
|
|
end
|
|
end
|
|
|
|
# Set up gems listed in the Gemfile.
|
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
|
|
require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
|