-
Notifications
You must be signed in to change notification settings - Fork 2
/
cpflow.gemspec
30 lines (22 loc) · 942 Bytes
/
cpflow.gemspec
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
30
# frozen_string_literal: true
require_relative "lib/cpflow/version"
Gem::Specification.new do |spec|
spec.name = "cpflow"
spec.version = Cpflow::VERSION
spec.authors = ["Justin Gordon", "Sergey Tarasov"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = "Control Plane Flow"
spec.description = "CLI for providing Heroku-like platform-as-a-service on Control Plane"
spec.homepage = "https://github.com/shakacode/control-plane-flow"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "dotenv", "~> 2.8.1"
spec.add_dependency "jwt", "~> 2.8.1"
spec.add_dependency "psych", "~> 5.1.0"
spec.add_dependency "thor", "~> 1.2.1"
spec.files = `git ls-files -z`.split("\x0").reject do |file|
file.match(%r{^(coverage|pkg|spec|tmp)/})
end
spec.executables = ["cpflow"]
spec.metadata["rubygems_mfa_required"] = "true"
end