-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbubbletea.gemspec
More file actions
40 lines (33 loc) · 1.19 KB
/
bubbletea.gemspec
File metadata and controls
40 lines (33 loc) · 1.19 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
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true
require_relative "lib/bubbletea/version"
Gem::Specification.new do |spec|
spec.name = "bubbletea"
spec.version = Bubbletea::VERSION
spec.authors = ["Marco Roth"]
spec.email = ["marco.roth@intergga.ch"]
spec.summary = "Ruby wrapper for Charm's bubbletea. A powerful TUI framework."
spec.description = "Build beautiful, interactive terminal applications using the Elm Architecture in Ruby."
spec.homepage = "https://github.com/marcoroth/bubbletea-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir[
"bubbletea.gemspec",
"LICENSE.txt",
"README.md",
"CHANGELOG.md",
"sig/**/*.rbs",
"lib/**/*.rb",
"ext/**/*.{c,h,rb}",
"go/**/*.{go,mod,sum}",
"go/build/**/*"
]
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.extensions = ["ext/bubbletea/extconf.rb"]
spec.add_dependency "lipgloss", "~> 0.1"
end