aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/command/actions.rb
blob: 52d3348db37f99ae41b477dd1e1be2d64322b986 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Rails
  module Command
    module Actions
      private
        # Change to the application's path if there is no config.ru file in current directory.
        # This allows us to run `rails server` from other directories, but still get
        # the main config.ru and properly set the tmp directory.
        def set_application_directory!
          Dir.chdir(File.expand_path("../../", APP_PATH)) unless File.exist?(File.expand_path("config.ru"))
        end

        def require_application_and_environment!
          require APP_PATH
          Rails.application.require_environment!
        end
    end
  end
end