Update www/firefox-esr to version 102.5.0,1
[dports.git] / www / rubygem-erubi19 / pkg-descr
1 Erubi is a ERB template engine for Ruby. It is a simplified fork of Erubis,
2 using the same basic algorithm, with the following differences:
3 - Handles postfix conditionals when using escaping (e.g. <%= foo if bar %>)
4 - Supports frozen_string_literal: true in templates via :freeze option
5 - Works with Ruby's -enable-frozen-string-literal option
6 - Automatically freezes strings for template text when Ruby optimizes it (on
7   Ruby 2.1+)
8 - Escapes ' (apostrophe) when escaping for better XSS protection
9 - Has 6x faster escaping on Ruby 2.3+ by using cgi/escape
10 - Has 86% smaller memory footprint
11 - Does no monkey patching (Erubis adds a method to Kernel)
12 - Uses an immutable design (all options passed to the constructor, which returns
13   a frozen object)
14 - Has simpler internals (1 file, <150 lines of code)
15 - Has an open development model (Erubis doesn't have a public source control
16   repository or bug tracker)
17 - Is not dead (Erubis hasn't been updated since 2011)