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

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