https://github.com/domchristie/csscompress
Minify modern CSS with Ruby
https://github.com/domchristie/csscompress
Last synced: 3 months ago
JSON representation
Minify modern CSS with Ruby
- Host: GitHub
- URL: https://github.com/domchristie/csscompress
- Owner: domchristie
- License: mit
- Created: 2022-01-13T19:22:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-17T20:15:19.000Z (over 3 years ago)
- Last Synced: 2025-04-23T00:48:35.935Z (3 months ago)
- Language: Ruby
- Size: 223 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Csscompress
Minify modern CSS with Ruby. Csscompress currently uses [CSSO](https://github.com/css/csso) via [ExecJS](https://github.com/rails/execjs).
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'csscompress'
```And then execute:
$ bundle install
Or install it yourself as:
$ gem install csscompress
## Usage
```rb
require "csscompress"
minified_css_string = Csscompress.minify("/path/to/css/file")
```### Rails with Sprockets / Asset Pipeline
In `config/environments/production.rb` and `config/environments/test.rb`:
```rb
config.assets.css_compressor = :csscompress
```## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/domchristie/csscompress. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/domchristie/csscompress/blob/main/CODE_OF_CONDUCT.md).
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the Csscompress project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/domchristie/csscompress/blob/main/CODE_OF_CONDUCT.md).