Sha256: 9f7d0b719b7d6f6cb058c2e886a828fb92cbcbda5f0ab3162298ee8723f2fda0

Contents?: true

Size: 634 Bytes

Versions: 1

Compression:

Stored size: 634 Bytes

Contents

# frozen_string_literal: true

unless defined?( DEVISE_ORM )
  DEVISE_ORM = ( ENV["DEVISE_ORM"] || :active_record ).to_sym
end

module Devise
  module Test
    # Detection for minor differences between Rails 4 and 5, 5.1, and 5.2 in tests.

    def self.rails52?
      Rails.version.start_with? '5.2'
    end

    def self.rails51?
      Rails.version.start_with? '5.1'
    end

    def self.rails5?
      Rails.version.start_with? '5'
    end
  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'] )

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
devise_date_restrictable-1.0.0 test/rails_app/config/boot.rb