-
Notifications
You must be signed in to change notification settings - Fork 0
/
unifig.gemspec
32 lines (24 loc) · 1.04 KB
/
unifig.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
# frozen_string_literal: true
require_relative 'lib/unifig/version'
Gem::Specification.new do |spec|
spec.name = 'unifig'
spec.version = Unifig::VERSION
spec.license = 'MIT'
spec.authors = ['Aaron Lasseigne']
spec.email = ['aaron.lasseigne@gmail.com']
spec.summary = 'A pluggable system for loading external variables from one or more providers (e.g. ENV).'
spec.description = spec.summary
spec.homepage = 'https://github.com/AaronLasseigne/unifig'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.metadata['rubygems_mfa_required'] = 'true'
spec.required_ruby_version = '>= 2.7.0'
spec.add_dependency 'tsort', '0.1.0'
spec.files =
%w[CHANGELOG.md CONTRIBUTING.md LICENSE.txt README.md] +
Dir.glob(File.join('lib', '**', '*.rb'))
spec.test_files = Dir.glob(File.join('spec', '**', '*.rb'))
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
end