1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# frozen_string_literal: true
require_relative "lib/gitlab/cng/version"
Gem::Specification.new do |spec|
spec.name = "gitlab-cng"
spec.license = "MIT"
spec.version = Gitlab::Cng::VERSION
spec.authors = ["GitLab Quality"]
spec.email = ["quality@gitlab.com"]
spec.summary = "CNG deployment orchestrator"
spec.description = "CLI tool to setup environment and deploy CNG builds"
spec.required_ruby_version = Gem::Requirement.new(">= 3.0")
spec.files = Dir["README.md", "LICENSE.txt", "lib/**/*", "exe/cng"]
spec.bindir = "exe"
spec.executables = "cng"
spec.require_paths = ["lib"]
spec.add_dependency "activesupport", ">= 7"
spec.add_dependency "rainbow", "~> 3.1"
spec.add_dependency "require_all", "~> 3.0"
spec.add_dependency "thor", "~> 1.3"
spec.add_dependency "tty-prompt", "~> 0.23.1"
spec.add_dependency "tty-spinner", "~> 0.9.3"
spec.add_dependency "tty-which", "~> 0.5.0"
end
|