mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
14 lines
412 B
Ruby
14 lines
412 B
Ruby
# Specifies gem version of Rails to use when vendor/rails is not present
|
|
old_verbose, $VERBOSE = $VERBOSE, nil
|
|
RAILS_GEM_VERSION = '>= 2.1.0' unless defined? RAILS_GEM_VERSION
|
|
$VERBOSE = old_verbose
|
|
|
|
require File.join(File.dirname(__FILE__), 'boot')
|
|
|
|
Rails::Initializer.run do |config|
|
|
config.log_level = :debug
|
|
config.cache_classes = false
|
|
config.whiny_nils = true
|
|
end
|
|
|
|
# Dependencies.log_activity = true
|