-
Notifications
You must be signed in to change notification settings - Fork 0
/
nest.gemspec
30 lines (25 loc) · 1019 Bytes
/
nest.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/nest/version'
Gem::Specification.new do |spec|
spec.name = 'nest'
spec.version = Nest::VERSION
spec.license = 'GPL-3.0'
spec.author = 'James Lee'
spec.email = '[email protected]'
spec.homepage = 'https://james.tl/projects/nest/'
spec.summary = 'Commands for Nest administration'
spec.description = <<-DESC
This is a collection of command-line tools to install, upgrade, and
generally administer my personal Linux distribution called Nest.
DESC
spec.metadata['rubygems_mfa_required'] = 'true'
spec.metadata['source_code_uri'] = 'https://gitlab.james.tl/nest/cli'
spec.executables = ['nest']
spec.files = Dir['lib/**/*.rb']
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.6.0'
spec.add_dependency 'thor', '~> 1.1'
spec.add_dependency 'tty-command', '~> 0.10.1'
spec.add_dependency 'tty-logger', '~> 0.6.0'
spec.add_dependency 'tty-prompt', '~> 0.23.1'
end