Condensation
A collection of handy Liquid filters. Developed for Drip.
Installation
Add this line to your application's Gemfile:
gem 'condensation'
And then execute:
$ bundle
Or install it yourself as:
$ gem install condensation
Usage
To make all the filters available in your Liquid templates, place this call in your app initialization code:
Condensation.register_filters
For example, in a Rails app, you'll likely place this in an initializer. To pick and choose which filters you like, just register them manually:
Liquid::Template.register_filter(Condensation::Filters::DaysUntil)
Explore all the available filters here.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request