-
Notifications
You must be signed in to change notification settings - Fork 0
/
rake_circle_ci.gemspec
44 lines (36 loc) · 1.2 KB
/
rake_circle_ci.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
40
41
42
43
44
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rake_circle_ci/version'
files = %w[
bin
lib
CODE_OF_CONDUCT.md
rake_circle_ci.gemspec
Gemfile
LICENSE.txt
Rakefile
README.md
]
Gem::Specification.new do |spec|
spec.name = 'rake_circle_ci'
spec.version = RakeCircleCI::VERSION
spec.authors = ['InfraBlocks Maintainers']
spec.email = ['maintainers@infrablocks.io']
spec.summary = 'Rake tasks for CircleCI projects.'
spec.description = 'Allows managing environment variables and SSH keys.'
spec.homepage = 'https://github.com/infrablocks/rake_circle_ci'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match(/^(#{files.map { |g| Regexp.escape(g) }.join('|')})/)
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.1'
spec.add_dependency 'colored2', '~> 3.1'
spec.add_dependency 'excon', '>= 0.72', '< 2.0'
spec.add_dependency 'rake_factory', '~> 0.33'
spec.add_dependency 'sshkey', '~> 2.0'
spec.metadata['rubygems_mfa_required'] = 'false'
end