ruby-erubi 1.9.0-1 source package in Ubuntu

Changelog

ruby-erubi (1.9.0-1) unstable; urgency=medium

  * Team Upload.

  [ Utkarsh Gupta ]
  * Add salsa-ci.yml

  [ Nilesh Patra ]
  * New upstream version 1.9.0
  * Drop compat, switch to debhelper-compat
  * Add upstream/metadata
  * Add "Rules-Requires-Root: no"
  * Bump standards version to 4.5.0
  * Run wrap-and-sort
  * Remove unused substitution variable

 -- Nilesh Patra <email address hidden>  Sun, 23 Feb 2020 14:45:09 +0530

Upload details

Uploaded by:
Debian Ruby Extras Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Ruby Extras Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-erubi_1.9.0-1.dsc 2.0 KiB 8cba05d5cd7cf429622f0642c2694d0d14d1a863ed5ce55f2689330be8da769a
ruby-erubi_1.9.0.orig.tar.gz 10.2 KiB 290450663aeb0d57d97815d1491b52e32a23df25fb8a2cfd394e86f6ab11a213
ruby-erubi_1.9.0-1.debian.tar.xz 2.6 KiB 58dd23ce97f00aae06da55c8efc19a26ca5718f15545744b092ed1da8f8d7fd5

Available diffs

No changes file available.

Binary packages built by this source

ruby-erubi: Small ERB Implementation

 Erubi is a ERB template engine for ruby. It is a simplified fork of Erubis,
 using the same basic algorithm, with the following differences:
 .
  * Handles postfix conditionals when using escaping (e.g. <tt><%= foo if bar
    %></tt>)
  * Supports frozen_string_literal: true in templates via :freeze option
  * Works with ruby's --enable-frozen-string-literal option
  * Automatically freezes strings for template text when ruby optimizes it (on
    ruby 2.1+)
  * Escapes ' (apostrophe) when escaping for better XSS protection
  * Has 6x faster escaping on ruby 2.3+ by using cgi/escape
  * Has 86% smaller memory footprint
  * Does no monkey patching (Erubis adds a method to Kernel)
  * Uses an immutable design (all options passed to the constructor, which
    returns a frozen object)
  * Has simpler internals (1 file, <150 lines of code)