summaryrefslogtreecommitdiff
path: root/config/initializers/console_message.rb
blob: 536ab337d8581a7fe1bfc35f2bd987c5892fd73d (plain)
1
2
3
4
5
6
7
8
9
10
# 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