ruby-erubi 1.7.1-1 source package in Ubuntu

Changelog

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

  * Initial release (Closes: #875290)

 -- Sruthi Chandran <email address hidden>  Tue, 01 May 2018 15:38:50 +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

Builds

Cosmic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-erubi_1.7.1-1.dsc 2.0 KiB f166b29148a80f9d4d8ec53493e8bf5eaca8cc015335eabc82a9ae0bf2ef8505
ruby-erubi_1.7.1.orig.tar.gz 9.0 KiB a858927c77b944fb688afa13c3fa25a8e7c445c82ab30c291fa9763be7b41831
ruby-erubi_1.7.1-1.debian.tar.xz 2.3 KiB 730df827f3aa312d296a159905b31a18bfa08ecb26d5736426d1734b5f2e1fcc

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)