# 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