В основном я хочу загрузить это:
require "active_record/railtie"
require "active_resource/railtie"
require "action_mailer/railtie"
и не загружать action_controller
, потому что в этой конкретной ситуации я не пользуюсь им.
Глядя на кодв мастере Rails я вижу:
# For now, action_controller must always be present with
# rails, so let's make sure that it gets required before
# here. This is needed for correctly setting up the middleware.
# In the future, this might become an optional require.
require "action_controller/railtie"
... поэтому мне было интересно: возможно ли загрузить Rails только с active_record
, active_resource
и action_mailer
, илимне всегда нужно загружать action_controller
?