-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfilewatcher-cli.gemspec
39 lines (26 loc) · 1.13 KB
/
filewatcher-cli.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
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true
require_relative 'lib/filewatcher/cli/constants'
Gem::Specification.new do |spec|
spec.name = 'filewatcher-cli'
spec.version = Filewatcher::CLI::VERSION
spec.authors = ['Thomas Flemming', 'Alexander Popov']
spec.email = ['[email protected]', '[email protected]']
spec.summary = 'CLI for Filewatcher'
spec.description = <<~DESC
CLI for Filewatcher.
DESC
spec.license = 'MIT'
source_code_uri = 'https://github.com/filewatcher/filewatcher-cli'
spec.homepage = source_code_uri
spec.metadata['source_code_uri'] = source_code_uri
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['changelog_uri'] =
'https://github.com/filewatcher/filewatcher-cli/blob/main/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir['{exe,lib}/**/*.{rb,txt}', 'README.md', 'LICENSE.txt', 'CHANGELOG.md']
spec.bindir = Filewatcher::CLI::BINDIR
spec.executables << 'filewatcher'
spec.required_ruby_version = '>= 3.0', '< 4'
spec.add_runtime_dependency 'clamp', '~> 1.3'
spec.add_runtime_dependency 'filewatcher', '~> 2.1'
end