Ruby gem that takes code as input (HTML, JavaScript, or CSS), determines the code language, validates it, and then minifies it.
Go to file
2023-08-24 06:33:49 -06:00
bin Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
lib Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
sig Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
spec Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
.gitignore Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
.rspec Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
.rubocop.yml Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
CHANGELOG.md Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
CODE_OF_CONDUCT.md Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
Gemfile Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
LICENSE Initial commit 2023-08-24 06:15:36 -06:00
Miniparse.gemspec Make Readme not a template, update Gemspec 2023-08-24 06:33:49 -06:00
Rakefile Upload finished Gem V1.0 2023-08-24 06:26:44 -06:00
README.md Make Readme not a template, update Gemspec 2023-08-24 06:33:49 -06:00

Miniparse

Miniparse is a Ruby gem that takes code as input (HTML, JavaScript, or CSS), determines the code language, validates it, and then minifies it. It returns whether the code is valid or not, and if valid, provides the minified code.

Installation

Add this line to your application's Gemfile:

gem 'Miniparse'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install Miniparse

Usage

Miniparse provides two main methods to process either a file or a string containing HTML, JavaScript, or CSS code.

Processing a File

You can process a file by calling the type_file method and passing the file path as an argument:

result = Miniparse::Processor.type_file('path/to/yourfile.html')

Processing a String

You can process a string containing code by calling the type_string method:

result = Miniparse::Processor.type_string('<html><head></head><body></body></html>')

Both methods return a hash containing the validation status, any errors, and the minified code if the input was valid:

{
  valid: true or false,
  errors: "Error message if any",
  minified_code: "Minified code if valid"
}

Contributing

Bug reports and pull requests are welcome. Please adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.