-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathorbital.gemspec
More file actions
52 lines (44 loc) · 1.93 KB
/
Copy pathorbital.gemspec
File metadata and controls
52 lines (44 loc) · 1.93 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
require_relative 'lib/orbital/version'
Gem::Specification.new do |spec|
spec.name = 'orbital'
spec.license = 'MIT'
spec.version = Orbital::VERSION
spec.authors = ['Levi Aul']
spec.email = ['levi@leviaul.com']
spec.summary = %q{Covalent's k8s infra manager}
spec.homepage = 'https://github.com/covalenthq/orbital'
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['exe/*'] +
Dir['lib/**/*.rb'] +
Dir['share/**/*'] +
['LICENSE', 'README.md']
end
spec.bindir = 'exe'
spec.executables = ['orbital']
spec.require_paths = ['lib']
spec.add_runtime_dependency 'accessory', '~> 0.1.11'
spec.add_runtime_dependency 'activesupport', '~> 8.1.3'
spec.add_runtime_dependency 'base32-multi', '~> 0.1.0'
spec.add_runtime_dependency 'base64', '~> 0.3.0'
spec.add_runtime_dependency 'dry-logic', '1.6.0'
spec.add_runtime_dependency 'fileutils', '~> 1.8.0'
spec.add_runtime_dependency 'k8s-ruby', '~> 0.17.2'
spec.add_runtime_dependency 'kubesealr', '~> 0.1.7'
spec.add_runtime_dependency 'kustomizer', '~> 0.1.18'
spec.add_runtime_dependency 'paint', '~> 2.3.0'
spec.add_runtime_dependency 'pry', '~> 0.16.0'
spec.add_runtime_dependency 'recursive-open-struct', '~> 1.1.3'
spec.add_runtime_dependency 'thor', '~> 1.5.0'
spec.add_runtime_dependency 'tty-command', '~> 0.10.0'
spec.add_runtime_dependency 'tty-link', '~> 0.2.0'
spec.add_runtime_dependency 'tty-platform', '~> 0.3.0'
spec.add_runtime_dependency 'tty-prompt', '~> 0.23'
spec.add_runtime_dependency 'tty-table', '~> 0.12.0'
spec.add_runtime_dependency 'tty-which', '~> 0.5.0'
spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.13.2'
end