Skip to content
Snippets Groups Projects
Commit ec548983 authored by Brett Walker's avatar Brett Walker Committed by Robert Speicher
Browse files

Output some useful information when running the rails console

parent 17f598e9
No related branches found
No related tags found
No related merge requests found
---
title: Output some useful information when running the rails console
merge_request: 18697
author:
type: added
# rubocop:disable Rails/Output
if defined?(Rails::Console)
# note that this will not print out when using `spring`
justify = 15
puts "-------------------------------------------------------------------------------------"
puts " Gitlab:".ljust(justify) + "#{Gitlab::VERSION} (#{Gitlab::REVISION})"
puts " Gitlab Shell:".ljust(justify) + Gitlab::Shell.new.version
puts " #{Gitlab::Database.adapter_name}:".ljust(justify) + Gitlab::Database.version
puts "-------------------------------------------------------------------------------------"
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment