aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/all.rb
blob: 19c2226619db78112506353fbe171b0f7013cab4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require "rails"

if defined?(Rake) && Rake.application.top_level_tasks.grep(/^test(?::|$)/).any?
  ENV['RAILS_ENV'] ||= 'test'
end

%w(
  active_record
  action_controller
  action_mailer
  rails/test_unit
  sprockets
).each do |framework|
  begin
    require "#{framework}/railtie"
  rescue LoadError
  end
end