Sanford template engine for rendering Rabl templates
Register the engine:
# in config/services.rb or wherever
require 'sanford'
require 'sanford-rabl'
Sanford.configure do |c|
c.template_source "/path/to/templates" do |s|
s.engine 'rabl', Sanford::Rabl::TemplateEngine
end
end
Add .rabl
to any template files in your template source path. Sanford will render their content using Rabl when they are rendered.
Rabl allows you to specify the template scope. Templates will be rendered in the scope of the service handler. Therefore, you can access any service handler attributes directly in the template file.
Add this line to your application's Gemfile:
gem 'sanford-rabl'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sanford-rabl
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request