Gem Version CircleCI

HamlUserTags

Define reusable functions in Haml that can be called with native Haml syntax.

Features

  • Native Haml syntax for calling helper functions
  • Ability to define helper functions using Haml
  • Ability to include user tags from one Haml file in another

Installation

Add this line to your application's Gemfile:

gem 'haml_user_tags'

And then execute:

$ bundle

Or install it yourself as:

$ gem install haml_user_tags

Usage

The Tutorial will guide you through how to create an use user tags. Briefly:

- define_tag :MyHamlHelper do |attributes, content|
  %samp MyHelper called with #{attributes.inspect} and #{content.inspect}
  %br

%MyHamlHelper.cls helper defined in Haml directly

Motivation

Guy Steele's Growing a Language (Video) gives a great demonstration of why user tags in Haml are an essential feature.

Contributing

  1. Fork it ( https://github.com/[my-github-username]/haml_user_tags/fork )
  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 a new Pull Request

Releasing

  1. rake features
  2. rake release
  3. Increment VERSION and LATEST_STABLE_VERSION
  4. rake site:publish
  5. git push