From 4c9e391e7a701317750d8d8eee8a093e540193b2 Mon Sep 17 00:00:00 2001 From: VetheonGames Date: Wed, 20 Sep 2023 00:13:32 -0600 Subject: [PATCH] Update gemspec and gitignore --- .gitignore | 3 +-- Miniparser.gemspec | 6 ++++-- lib/Miniparser/version.rb | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 3a6f747..783440f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,5 +9,4 @@ # rspec failure tracking .rspec_status -Miniparser-1.0.0.gem -Miniparser-1.0.1.gem +*.gem diff --git a/Miniparser.gemspec b/Miniparser.gemspec index ab22bc0..9f7f333 100644 --- a/Miniparser.gemspec +++ b/Miniparser.gemspec @@ -6,14 +6,14 @@ Gem::Specification.new do |spec| spec.name = 'Miniparser' spec.version = Miniparser::VERSION spec.authors = ['PixelRidge Softworks'] - spec.email = ['ceo@pixelatedstudios.net'] + spec.email = ['ceo@pixelridgesoftworks.com'] spec.summary = 'A Gem for Validating and Minifying HTML, CSS, and JS smartly' spec.description = 'Miniparser works pretty simply. You pass the Gem some input (HTML, JS, or CSS), and it will validate it, return the validated status, then minify it, and return the minified version as either a file (path) and a text return, respective to what input it got' spec.homepage = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/Miniparser' - spec.license = 'MIT' + spec.license = 'PixelRidge-BEGPULSE' spec.required_ruby_version = '>= 3.2.2' spec.metadata['homepage_uri'] = spec.homepage @@ -29,4 +29,6 @@ Gem::Specification.new do |spec| spec.files << 'Miniparser.gemspec' spec.require_paths = ['lib'] + + spec.post_install_message = 'If you find this gem useful, consider supporting its development: https://www.paypal.com/donate/?hosted_button_id=YF5XS7ZXQ6F8A' end diff --git a/lib/Miniparser/version.rb b/lib/Miniparser/version.rb index 91b8ce3..9c1e4c2 100644 --- a/lib/Miniparser/version.rb +++ b/lib/Miniparser/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Miniparser - VERSION = "1.0.1" + VERSION = '1.0.2' end