0.01
No release in over 3 years
Low commit activity in last 3 years
Hamlit integration for Cells
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

~> 4.0
>= 0
 Project Readme

Cells::Hamlit

Hamlit support for Cells. Hamlit is a faster implementation of Haml.

Installation

Add this line to your application's Gemfile:

gem "cells-hamlit"

Note that you need hamlit-block, too, for capture support. This will slightly change semantics with blocks, as follows. # TODO

Add this lines to your application's Gemfile:

gem "cells-hamlit"
gem "hamlit-block"

To capture strings, the = directive is needed in the block.

HTML Escaping

Cells doesn't escape except when you tell it to do. However, you may run into problems when using Rails helpers. Internally, those helpers often blindly escape. This is not Cells' fault but a design flaw in Rails.

As a first step, try this and see if it helps.

class SongCell < Cell::ViewModelHaml

If that doesn't work, read the docs.

Note

This gem should not be used with cells-haml