Sha256: 166705c7c85b2033616b3dfcb0a6194bd8917554f2b052481041711c10c6ff8c
Contents?: true
Size: 700 Bytes
Versions: 3
Compression:
Stored size: 700 Bytes
Contents
require 'refinerycms-core' require 'action_mailer' require 'devise' require 'friendly_id' module Refinery autoload :AuthenticationDeviseGenerator, 'generators/refinery/authentication/devise/authentication_generator' autoload :AuthenticationSystem, 'refinery/authenticated_system' module Authentication module Devise require 'refinery/authentication/devise/engine' require 'refinery/authentication/devise/configuration' class << self def factory_paths @factory_paths ||= [ root.join("spec/factories").to_s ] end def root @root ||= Pathname.new(File.expand_path('../../../', __FILE__)) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems