ERBX - ERB Extended with Pretty Tags

Gem Version Build Status


ERBX is a tiny extension to ERB allowing these tags:

  • {{ ... }} as an equivalent to <%= ... %> (print ruby code)
  • (( ... )) as an equivalent to <%- ... -%> (run ruby code)

Installation

$ gem install erbx

Usage

Given this ERBX templalte:

# example/template.md
((
# Any ruby code can go here
today = Time.now.strftime "%B %d, %Y"
dice = [rand(6) + 1, rand(6) + 1]
))

This roll of a dice happened on {{ today }}.
(( if dice[0] == dice[1] ))
Congratulations, its a double: {{ dice }}
(( else ))
You rolled {{ dice }}
(( end ))

Render it with ERBX.new, which returns an ERB instance, after replacing the extended tags - {{ }} and (( )) - with their ERB equivalents.

# Render example
require 'erbx'

template = ERBX.load 'example/template.md'
p template.class
#=> ERB

puts template.result
#=> 
#=> This roll of a dice happened on April 24, 2020.
#=> You rolled [4, 2]

Contributing / Support

If you experience any issue, have a question or a suggestion, or if you wish to contribute, feel free to open an issue.