-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitapi.gemspec
More file actions
32 lines (25 loc) · 862 Bytes
/
itapi.gemspec
File metadata and controls
32 lines (25 loc) · 862 Bytes
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
# frozen_string_literal: true
require_relative "lib/itapi/version"
Gem::Specification.new do |spec|
spec.name = "itapi"
spec.version = Itapi::VERSION
spec.authors = ["itapitanga"]
spec.email = []
spec.summary = "Lightweight desktop text editor built with Ruby and GTK3"
spec.description = "itapi is a fast, modern text editor inspired by Cursor/Zed with VS Code-style shortcuts."
spec.homepage = "https://github.com/itapitanga/itapi"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.files = Dir[
"lib/**/*.rb",
"assets/**/*",
"bin/*",
"*.md",
"*.gemspec"
]
spec.bindir = "bin"
spec.executables = ["itapi"]
spec.add_dependency "gtk3", "~> 4.3"
spec.add_dependency "gtksourceview3", "~> 4.3"
spec.add_dependency "vte3", "~> 4.3"
end