dolphins7.skeleton/twenty.gemspec
0x1eef daff4d83f4 Move "host" files to host/
The "host" refers to what houses the cli, server, and client.
2024-04-21 22:13:01 -03:00

18 lines
632 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |gem|
gem.name = "twenty"
gem.authors = ["0x1eef"]
gem.email = ["0x1eef@protonmail.com"]
gem.homepage = "https://github.com/0x1eef/twenty#readme"
gem.version = "0.3.5"
gem.licenses = ["0BSD"]
gem.files = [
*Dir.glob(File.join(__dir__, "host", "lib", "*.rb")),
].select { File.file?(_1) }
gem.summary = "Minimal project management that runs on your computer"
gem.description = gem.summary
gem.add_runtime_dependency "twenty-server", "0.3.5"
gem.add_runtime_dependency "twenty-client", "0.3.5"
gem.add_runtime_dependency "twenty-cli", "0.3.5"
end