diff --git a/phlex.gemspec b/phlex.gemspec index 666e4285..eadc123a 100644 --- a/phlex.gemspec +++ b/phlex.gemspec @@ -5,19 +5,20 @@ require_relative "lib/phlex/version" Gem::Specification.new do |spec| spec.name = "phlex" spec.version = Phlex::VERSION - spec.authors = ["Joel Drapper"] + spec.authors = ["Joel Drapper", "Will Cosgrove"] spec.email = ["joel@drapper.me"] - spec.summary = "A fun framework for building views in Ruby." - spec.description = "A high-performance view framework optimised for fun." + spec.summary = "Object-oriented views in Ruby." + spec.description = "Build HTML & SVG view components with Ruby classes." spec.homepage = "https://www.phlex.fun" spec.license = "MIT" spec.required_ruby_version = ">= 3.2" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/phlex-ruby/phlex" - spec.metadata["changelog_uri"] = "https://github.com/phlex-ruby/phlex/blob/main/CHANGELOG.md" + spec.metadata["changelog_uri"] = "https://github.com/phlex-ruby/phlex/releases" spec.metadata["funding_uri"] = "https://github.com/sponsors/joeldrapper" + spec.metadata["rubygems_mfa_required"] = "true" spec.files = Dir[ "README.md", @@ -26,6 +27,4 @@ Gem::Specification.new do |spec| ] spec.require_paths = ["lib"] - - spec.metadata["rubygems_mfa_required"] = "true" end