Miniparser/Miniparser.gemspec
2023-08-24 06:42:19 -06:00

33 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require_relative 'lib/Miniparser/version'
Gem::Specification.new do |spec|
spec.name = 'Miniparser'
spec.version = Miniparser::VERSION
spec.authors = ['PixelRidge Softworks']
spec.email = ['ceo@pixelatedstudios.net']
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.required_ruby_version = '>= 3.2.2'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/Miniparser'
spec.metadata['changelog_uri'] = 'https://git.pixelridgesoftworks.com/PixelRidge-Softworks/Miniparser/src/branch/main/CHANGELOG.md'
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob('{bin,lib,sig}/**/*') + Dir.glob('*').reject do |f|
f.start_with?('spec', '.rspec', 'Miniparser.gemspec')
end
spec.files << 'LICENSE'
spec.files << 'README.md'
spec.files << 'Miniparser.gemspec'
spec.require_paths = ['lib']
end