dolphins7.skeleton/client/client.gemspec
0x1eef 2bf57351ea Re-implement the client
Not all website features are working, but this commit is mostly
focused on an architecture that can be used in future projects
2024-07-31 22:48:00 -03:00

21 lines
853 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |gem|
gem.name = "twenty-client"
gem.authors = ["0x1eef"]
gem.email = ["0x1eef@protonmail.com"]
gem.homepage = "https://github.com/0x1eef/twenty#readme"
gem.version = "0.5.8"
gem.licenses = ["0BSD"]
gem.files = File.binread(File.join(__dir__, "MANIFEST"))
.each_line
.flat_map { Dir.glob(_1.chomp) }
.select { File.file?(_1) }
gem.require_paths = ["lib"]
gem.summary = "Provides the client component of twenty"
gem.description = "#{gem.summary}. " \
"Static content (HTML, CSS, JS). " \
"See https://rubygems.org/gems/twenty for context."
gem.add_development_dependency "standard", "~> 1.35"
gem.metadata = { "source_code_uri" => "https://github.com/0x1eef/twenty#readme" }
end