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

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