diff --git a/LICENSE.txt b/LICENSE similarity index 100% rename from LICENSE.txt rename to LICENSE diff --git a/puma-plugin-systemd.gemspec b/puma-plugin-systemd.gemspec index 6740fca..975404b 100644 --- a/puma-plugin-systemd.gemspec +++ b/puma-plugin-systemd.gemspec @@ -1,20 +1,20 @@ # coding: utf-8, frozen_string_literal: true lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) + require "puma/plugin/systemd/version" Gem::Specification.new do |spec| spec.name = "puma-plugin-systemd" spec.version = Puma::Plugin::Systemd::VERSION - spec.authors = ["Samuel Cochran"] - spec.email = ["sj26@sj26.com"] + spec.author = "Samuel Cochran" + spec.email = "sj26@sj26.com" spec.summary = "Puma integration with systemd: notify, status, watchdog" spec.homepage = "https://github.com/sj26/puma-plugin-systemd" spec.license = "MIT" - spec.files = Dir["lib/**/*.rb"] - spec.require_paths = ["lib"] + spec.files = Dir["lib/**/*.rb", "README.md", "LICENSE"] spec.add_runtime_dependency "puma", "~> 3.6.0" spec.add_runtime_dependency "json"