mirror of
https://github.com/github/rails.git
synced 2026-01-08 22:27:59 -05:00
15 lines
203 B
Ruby
15 lines
203 B
Ruby
require "rails"
|
|
|
|
%w(
|
|
active_record
|
|
action_controller
|
|
action_mailer
|
|
active_resource
|
|
rails/test_unit
|
|
).each do |framework|
|
|
begin
|
|
require "#{framework}/railtie"
|
|
rescue LoadError
|
|
end
|
|
end
|