Update gemspec and gitignore

This commit is contained in:
VetheonGames 2023-09-20 00:13:32 -06:00
parent bedb2197ac
commit 4c9e391e7a
3 changed files with 6 additions and 5 deletions

3
.gitignore vendored
View File

@ -9,5 +9,4 @@
# rspec failure tracking
.rspec_status
Miniparser-1.0.0.gem
Miniparser-1.0.1.gem
*.gem

View File

@ -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

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Miniparser
VERSION = "1.0.1"
VERSION = '1.0.2'
end