-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpkgforge.gemspec
More file actions
27 lines (21 loc) · 796 Bytes
/
pkgforge.gemspec
File metadata and controls
27 lines (21 loc) · 796 Bytes
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
require 'English'
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'pkgforge/version'
Gem::Specification.new do |s|
s.name = 'pkgforge'
s.version = PkgForge::VERSION
s.required_ruby_version = '>= 3.0'
s.summary = 'DSL engine for building Arch packages'
s.description = 'DSL engine for building Arch packages'
s.authors = ['Les Aker']
s.email = 'me@lesaker.org'
s.homepage = 'https://github.com/akerl/pkgforge'
s.license = 'MIT'
s.files = `git ls-files`.split
s.executables = ['pkgforge']
s.add_dependency 'contracts', '~> 0.17.0'
s.add_dependency 'cymbal', '~> 2.0.0'
s.add_dependency 'mercenary', '~> 0.4.0'
s.add_development_dependency 'goodcop', '~> 0.9.5'
s.metadata['rubygems_mfa_required'] = 'true'
end