Ruby gem providing a simple parser to replace curly brackets
{{like_this}}
inside strings like URLs, texts or even files easily.
Additional support for build-in filters and custom filters make them more powerful. {{example|my_filter}}
Using LuckyCase, all its case formats are supported as filter by default.
Add this line to your application's Gemfile:
gem 'curly_bracket_parser'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install curly_bracket_parser
You can either parse variables inside strings or even directly in files.
url = "https://my-domain.com/items/{{item_id}}"
final_url = CurlyBracketParser.parse url, { item_id: 123 }
# => "https://my-domain.com/items/123"
Nested variables are supported as well:
tmpl = "This is my template with {{my_nested_variable}}";
my_nested_variable = "my {{nested}} variable";
parsed_tmpl = CurlyBracketParser.parse tmpl, { my_nested_variable: my_nested_variable, nested: 'pizza'}
# => "This is my template with my pizza variable"
url = "https://my-domain.com/catalog/{{item_name|snake_case}}"
final_url = CurlyBracketParser.parse url, { item_name: 'MegaSuperItem' }
# => "https://my-domain.com/catalog/mega_super_item"
For a list of built-in filters visit LuckyCase.
CurlyBracketParser.register_filter('7times') do |string|
string.to_s * 7
end
text = "Paul went out and screamed: A{{scream|7times}}h"
final_text = CurlyBracketParser.parse text, { scream: 'a' }
# => "Paul went out and screamed: Aaaaaaaah"
For special cases you can directly define or set variables inside the template - usually it does only make sense, if you combine them with custom filters.
You can either use quotes to define a string or numbers (integer or floating point) directly.
Empty values are possible as well. They are equal to a empty string.
tmpl = %Q(This is a {{'string'|pascal_case}} and today is {{"today"|date_filter}}. Peter is {{'1990-10-05'|iso_date_age}} years old. His girlfriends name is {{girl|pascal_case}} and she is {{16|double_number}} years old. This article has been written at {{|date_now_formatted}}`)
parsed = CurlyBracketParser.parse tmpl, { girl: "anna" }
# => "This is a String and today is 2022-06-27. Peter is 32 years old. His girlfriends name is Anna and she is 32 years old. This article has been written at 6/28/2022, 12:46:40 PM."
test.html
<h1>{{title|sentence_case}}</h1>
parsed_file = CurlyBracketParser.parse_file './test.html', { title: 'WelcomeAtHome' }
# => "<h1>Welcome at home</h1>"
Use #parse_file!
instead to write the parsed string directly into the file!
You can define default variables, which will be replaced automatically without passing them by parameters, but can be overwritten with parameters.
Because of providing blocks, your variables can dynamically depend on other states (e.g. current date).
CurlyBracketParser.register_default_var('version') do
'1.0.2'
end
text = "You are running version {{version}}"
CurlyBracketParser.parse text
# => "You are running version 1.0.2"
CurlyBracketParser.parse text, { version: '0.7.0' }
# => "You are running version 0.7.0"
Check out the doc at RubyDoc https://www.rubydoc.info/gems/curly_bracket_parser
Bug reports and pull requests are welcome on GitHub at https://github.com/magynhard/curly_bracket_parser. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.