-
Notifications
You must be signed in to change notification settings - Fork 16
/
tomo.gemspec
36 lines (30 loc) · 1.47 KB
/
tomo.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
# frozen_string_literal: true
require_relative "lib/tomo/version"
Gem::Specification.new do |spec|
spec.name = "tomo"
spec.version = Tomo::VERSION
spec.authors = ["Matt Brictson"]
spec.email = ["[email protected]"]
spec.summary = "A friendly CLI for deploying Rails apps ✨"
spec.description =
"Tomo is a feature-rich deployment tool that contains everything you need to deploy a basic Rails app out of the " \
"box. It has an opinionated, production-tested set of defaults, but is easily extensible via a well-documented " \
"plugin system. Unlike other Ruby-based deployment tools, tomo’s friendly command-line interface and task system " \
"do not rely on Rake."
spec.homepage = "https://github.com/mattbrictson/tomo"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.1"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/mattbrictson/tomo/issues",
"changelog_uri" => "https://github.com/mattbrictson/tomo/releases",
"source_code_uri" => "https://github.com/mattbrictson/tomo",
"homepage_uri" => spec.homepage,
"documentation_uri" => "https://tomo.mattbrictson.com/",
"rubygems_mfa_required" => "true"
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob(%w[LICENSE.txt README.md {exe,lib}/**/*]).reject { |f| File.directory?(f) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
end