aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/engine/commands.rb
blob: 493b6988a5332b9b8d648fe8e25b7259f765174a (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
unless defined?(APP_PATH)
  if File.exist?(File.expand_path("test/dummy/config/application.rb", ENGINE_ROOT))
    APP_PATH = File.expand_path("test/dummy/config/application", ENGINE_ROOT)
  end
end

require "rails/commands"