0.01
No release in over 3 years
Low commit activity in last 3 years
A collection of handy extensions to the Liquid templating language
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

<= 4.0, >= 2.0
~> 1
 Project Readme

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request