ruby-paranoia 2.4.3-1 source package in Ubuntu

Changelog

ruby-paranoia (2.4.3-1) unstable; urgency=medium

  * Team upload.
  * New upstream release.
    - Adds support for Rails 6.1.
  * d/control: Add Rules-Requires-Root field.
    (Build-Depends): Raise to debhelper 13.
    (Standards-Version): Bump to 4.6.0.
    (Homepage): Update from rubygems to github project.
    (Depends): Remove interpreters and use ${ruby:Depends}.
  * d/copyright: Add Upstream-Contact field.
    (License): Fix short name.
    (Copyright): Add team.
  * d/rules: Use gem installation layout and install upstream changelog.
  * d/upstream/metadata: Add.

 -- Daniel Leidert <email address hidden>  Tue, 30 Nov 2021 02:36:14 +0100

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

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
ruby-paranoia_2.4.3-1.dsc 2.0 KiB a682dcf1987156a3f747d881618f40faee5dac122dd9e9bfb37b9c978529933c
ruby-paranoia_2.4.3.orig.tar.gz 18.8 KiB 1579b84e1f93c31b05725804db227b23e1ba149afec84f57085c7251b62ee2f8
ruby-paranoia_2.4.3-1.debian.tar.xz 3.2 KiB b1461324da57ade99475ba248b77b304a6df8856a24dbdb1afeaad88ac1b9edf

Available diffs

No changes file available.

Binary packages built by this source

ruby-paranoia: re-implementation of acts_as_paranoid for Rails 3

 Paranoia is a re-implementation of acts_as_paranoid for Rails 3, using much,
 much, much less code. You would use either plugin / gem if you wished that
 when you called destroy on an Active Record object that it didn't actually
 destroy it, but just "hid" the record. Paranoia does this by setting a
 deleted_at field to the current time when you destroy a record, and hides it
 by scoping all queries on your model to only include records which do not have
 a deleted_at field.