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