From 11b171abf3c6b9f3d2e2327d6cfd0ba75bcfc9a1 Mon Sep 17 00:00:00 2001 From: Samuel Cochran Date: Fri, 4 May 2018 22:30:25 +1000 Subject: [PATCH] Packaging tweaks --- LICENSE.txt => LICENSE | 0 puma-plugin-systemd.gemspec | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) rename LICENSE.txt => LICENSE (100%) 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"