0.04
No commit activity in last 3 years
No release in over 3 years
Use the JST processor and have haml code read in and appended to application.js
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

~> 1.3.0
~> 2.1.2
~> 1.3
 Project Readme

Using HAML-JS with Sprockets and Rails 3.1

About

Rails 3.1 uses sprockets for its asset pipeline. Rails 3.1 has shown considerable love for SCSS and SASS but has left HAML out. We at Dharana Software Innovations are die hard HAML fans. We beleive that it is the best templating language around. So we would like to have it as a part of our client side toolkit as well. The haml-js project does exactly that. It was written for Node.js but works well with the browser too.

How to use it?

The gem includes haml-js. You would not have to download it separately. To use this gem, you need to do the following.

In the Gemfile, add the following line.

gem "haml-sprockets"

Now, you can create hamljs files under app/assets/javascripts/templates folder. You can create the templates folder, if it does not already exist.

// code for app/assets/javascripts/templates/hello.jst.hamljs
%h1 Hello HAML

You can now access the template anywhere in your javascript or coffeescript code.

JST["templates/hello"]()

This should give you back the string "<h1>Hello HAML</h1>".

LICENSE

This is distributed under the MIT license.