dolphins7.skeleton/client/client.gemspec
0x1eef 2e8cf6e333 Drop 'twenty-' prefix from toplevel directories
The directories twenty-{server,client,cli} have been renamed to
not include 'twenty-'. The gems are still published with the twenty-
prefix, otherwise a collision is impossible to avoid. This commit makes
it slightly easier to generalize twenty.
2024-04-21 20:11:25 -03:00

23 lines
876 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.3.5"
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 = "HTTP client"
gem.description = gem.summary
gem.add_development_dependency "nanoc", "~> 4.12"
gem.add_development_dependency "sass", "~> 3.7"
gem.add_development_dependency "rainpress", "~> 1.0"
gem.add_development_dependency "nanoc-webpack.rb", "~> 0.8.1"
gem.add_development_dependency "listen", "~> 3.8"
gem.add_development_dependency "standard", "~> 1.35"
end