ruby-to-regexp 0.2.1-2 source package in Ubuntu

Changelog

ruby-to-regexp (0.2.1-2) unstable; urgency=medium

  * Source-only upload for bullseye 

 -- Pirate Praveen <email address hidden>  Mon, 30 Dec 2019 21:39:56 +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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc
Focal release universe misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-to-regexp_0.2.1-2.dsc 2.0 KiB 4bd6173a860e317b78336e1a0e895d15d383b56b03de837a41e5883fe4f5eeaf
ruby-to-regexp_0.2.1.orig.tar.gz 5.2 KiB 69d2111fe78b4e7bcfd502fbb02fb9a4cde4b0bb76f190671fdf70975995eaae
ruby-to-regexp_0.2.1-2.debian.tar.xz 2.3 KiB e36c12190e3c4997698406bf2c713d43e4af0c9a7e5f931d70eab0e3ce9f6e53

Available diffs

No changes file available.

Binary packages built by this source

ruby-to-regexp: safe way to convert strings to regexps (with options)

 Provides String#to_regexp, for example if you want to make regexps out of a
 CSV you just imported.
 .
 Some features:
  - You can also treat strings as literal regexps.
  - If you need case insensitivity and you're using :literal, pass options
    like :ignore_case.
  - You can get the options passed to Regexp.new with #as_regexp.
  - Finally, you can be more lazy using :detect.