-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlucy_dockerunner.gemspec
29 lines (27 loc) · 1.29 KB
/
lucy_dockerunner.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
# frozen_string_literal: true
require_relative "lib/lucy_dockerunner/version"
Gem::Specification.new do |spec|
spec.name = "lucy_dockerunner"
spec.version = LucyDockerunner::VERSION
spec.authors = ["JesusGautamah"]
spec.email = ["[email protected]"]
spec.summary = "This gem is a tool to run docker containers with rake commands, good for CI/CD and Rails projects"
spec.description = "This gem is a tool to run docker containers with rake commands, good for CI/CD and Rails projects.
Docs: https://github.com/JesusGautamah/lucy_dockerunner"
spec.homepage = "https://github.com/JesusGautamah/lucy_dockerunner"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.6.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
end
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end