mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
439 B
Ruby
19 lines
439 B
Ruby
require File.expand_path('../../../../load_paths', __FILE__)
|
|
|
|
lib = File.expand_path("#{File.dirname(__FILE__)}/../../lib")
|
|
$:.unshift(lib) unless $:.include?('lib') || $:.include?(lib)
|
|
|
|
require 'config'
|
|
require 'active_model'
|
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
require 'rubygems'
|
|
require 'test/unit'
|
|
|
|
begin
|
|
require 'ruby-debug'
|
|
Debugger.start
|
|
rescue LoadError
|
|
end
|