mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
16 lines
224 B
Ruby
16 lines
224 B
Ruby
require "rails"
|
|
|
|
%w(
|
|
active_record
|
|
action_controller
|
|
action_view
|
|
action_mailer
|
|
active_job
|
|
rails/test_unit
|
|
sprockets
|
|
).each do |framework|
|
|
begin
|
|
require "#{framework}/railtie"
|
|
rescue LoadError
|
|
end
|
|
end
|