903946c78a
Colorize is a gem licensed under the GPLv2, so we can’t use it in GitLab without relicensing GitLab under the terms of the GPL. Rainbow is licensed under the MIT license and does the exact same thing as Colorize, so Rainbow was added in place of Colorize. The syntax is slightly different for Rainbow vs. Colorize, and was updated in accordance. The gem is still a dependency of Spinach, so it’s included in the development/test environments, but won’t be packaged with the actual product, and therefore doesn’t require we relicense the product. An attempt at relicensing Colorize was made, but didn’t succeed as the library owner never responded. Rainbow library: https://github.com/sickill/rainbow Relevant issue regarding licensing in GitLab's gems: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3775
71 lines
2.9 KiB
Ruby
71 lines
2.9 KiB
Ruby
namespace :gitlab do
|
|
namespace :env do
|
|
desc "GitLab | Show information about GitLab and its environment"
|
|
task info: :environment do
|
|
|
|
# check if there is an RVM environment
|
|
rvm_version = run_and_match(%W(rvm --version), /[\d\.]+/).try(:to_s)
|
|
# check Ruby version
|
|
ruby_version = run_and_match(%W(ruby --version), /[\d\.p]+/).try(:to_s)
|
|
# check Gem version
|
|
gem_version = run(%W(gem --version))
|
|
# check Bundler version
|
|
bunder_version = run_and_match(%W(bundle --version), /[\d\.]+/).try(:to_s)
|
|
# check Bundler version
|
|
rake_version = run_and_match(%W(rake --version), /[\d\.]+/).try(:to_s)
|
|
|
|
puts ""
|
|
puts "System information".color(:yellow)
|
|
puts "System:\t\t#{os_name || "unknown".color(:red)}"
|
|
puts "Current User:\t#{run(%W(whoami))}"
|
|
puts "Using RVM:\t#{rvm_version.present? ? "yes".color(:green) : "no"}"
|
|
puts "RVM Version:\t#{rvm_version}" if rvm_version.present?
|
|
puts "Ruby Version:\t#{ruby_version || "unknown".color(:red)}"
|
|
puts "Gem Version:\t#{gem_version || "unknown".color(:red)}"
|
|
puts "Bundler Version:#{bunder_version || "unknown".color(:red)}"
|
|
puts "Rake Version:\t#{rake_version || "unknown".color(:red)}"
|
|
puts "Sidekiq Version:#{Sidekiq::VERSION}"
|
|
|
|
|
|
# check database adapter
|
|
database_adapter = ActiveRecord::Base.connection.adapter_name.downcase
|
|
|
|
project = Group.new(path: "some-group").projects.build(path: "some-project")
|
|
# construct clone URLs
|
|
http_clone_url = project.http_url_to_repo
|
|
ssh_clone_url = project.ssh_url_to_repo
|
|
|
|
omniauth_providers = Gitlab.config.omniauth.providers
|
|
omniauth_providers.map! { |provider| provider['name'] }
|
|
|
|
puts ""
|
|
puts "GitLab information".color(:yellow)
|
|
puts "Version:\t#{Gitlab::VERSION}"
|
|
puts "Revision:\t#{Gitlab::REVISION}"
|
|
puts "Directory:\t#{Rails.root}"
|
|
puts "DB Adapter:\t#{database_adapter}"
|
|
puts "URL:\t\t#{Gitlab.config.gitlab.url}"
|
|
puts "HTTP Clone URL:\t#{http_clone_url}"
|
|
puts "SSH Clone URL:\t#{ssh_clone_url}"
|
|
puts "Using LDAP:\t#{Gitlab.config.ldap.enabled ? "yes".color(:green) : "no"}"
|
|
puts "Using Omniauth:\t#{Gitlab.config.omniauth.enabled ? "yes".color(:green) : "no"}"
|
|
puts "Omniauth Providers: #{omniauth_providers.join(', ')}" if Gitlab.config.omniauth.enabled
|
|
|
|
|
|
|
|
# check Gitolite version
|
|
gitlab_shell_version_file = "#{Gitlab.config.gitlab_shell.hooks_path}/../VERSION"
|
|
if File.readable?(gitlab_shell_version_file)
|
|
gitlab_shell_version = File.read(gitlab_shell_version_file)
|
|
end
|
|
|
|
puts ""
|
|
puts "GitLab Shell".color(:yellow)
|
|
puts "Version:\t#{gitlab_shell_version || "unknown".color(:red)}"
|
|
puts "Repositories:\t#{Gitlab.config.gitlab_shell.repos_path}"
|
|
puts "Hooks:\t\t#{Gitlab.config.gitlab_shell.hooks_path}"
|
|
puts "Git:\t\t#{Gitlab.config.git.bin_path}"
|
|
|
|
end
|
|
end
|
|
end
|