-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathtry-cli.gemspec
More file actions
31 lines (27 loc) · 1.04 KB
/
try-cli.gemspec
File metadata and controls
31 lines (27 loc) · 1.04 KB
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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "try-cli"
spec.version = File.read(File.expand_path("VERSION", __dir__)).strip
spec.authors = ["Tobi Lutke"]
spec.email = ["tobi@lutke.com"]
spec.summary = "Experiments deserve a home"
spec.description = "A CLI tool for managing experimental projects. Creates dated directories for your tries, with fuzzy search and easy navigation."
spec.homepage = "https://pages.tobi.lutke.com/try/"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/tobi/try"
spec.metadata["documentation_uri"] = "https://pages.tobi.lutke.com/try/"
spec.metadata["changelog_uri"] = "https://github.com/tobi/try/releases"
spec.files = Dir[
"lib/**/*",
"bin/*",
"try.rb",
"VERSION",
"LICENSE*",
"README.md"
]
spec.bindir = "bin"
spec.executables = ["try"]
spec.require_paths = ["lib", "."]
end