Skip to content
代码片段 群组 项目
提交 2ece4432 编辑于 作者: Gabriel Mazetto's avatar Gabriel Mazetto
浏览文件

Use `GITLAB_PATH` instead of `APP_PATH` and expose it into context

上级 c7a14efd
No related branches found
No related tags found
无相关合并请求
......@@ -5,7 +5,7 @@ $:.unshift File.expand_path("../../lib", __FILE__)
# We require APP_PATH when the rails environment is required only,
# this allows for faster CLI execution when rails is not needed
APP_PATH = File.expand_path('../config/application', __dir__)
GITLAB_PATH = File.expand_path('../', __dir__)
require_relative '../config/boot'
......
......@@ -7,5 +7,7 @@ require "gitlab/backup/cli"
# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
GITLAB_PATH = File.expand_path(File.join(__dir__, '../../../'))
require "irb"
IRB.start(__FILE__)
......@@ -27,7 +27,7 @@ module Cli
Error = Class.new(StandardError)
def self.rails_environment!
require APP_PATH
require File.join(GITLAB_PATH, 'config/application')
Rails.application.require_environment!
Rails.application.autoloaders
......
......@@ -76,6 +76,14 @@ def env
@env ||= ActiveSupport::EnvironmentInquirer.new(
ENV["RAILS_ENV"].presence || ENV["RACK_ENV"].presence || "development")
end
private
def gitlab_basedir
return GITLAB_PATH if GITLAB_PATH
raise ::Gitlab::Backup::Cli::Error, 'GITLAB_PATH is missing'
end
end
end
end
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册