File: gitlab-cng.gemspec

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (29 lines) | stat: -rw-r--r-- 926 bytes parent folder | download
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