Files
gitlab-foss/gems/gitlab-backup-cli/bin/console
2024-07-27 03:07:12 +00:00

14 lines
370 B
Ruby
Executable File

#!/usr/bin/env ruby
# frozen_string_literal: true
# GITLAB_PATH points to the Rails.root, which the tool can use to load
# the Rails environment when necessary or to help find configuration files
# when used with GDK
GITLAB_PATH = File.expand_path(File.join(__dir__, '../../../'))
require "bundler/setup"
require "gitlab/backup/cli"
require "irb"
IRB.start(__FILE__)