ruby-dirty-memoize 0.0.4-2 source package in Ubuntu
Changelog
ruby-dirty-memoize (0.0.4-2) unstable; urgency=medium
* Team upload.
[ Cédric Boutillier ]
* Use https:// in Vcs-* fields
* Bump Standards-Version to 3.9.7 (no changes needed)
* Run wrap-and-sort on packaging files
[ Utkarsh Gupta ]
* Add salsa-ci.yml
[ Debian Janitor ]
* Use secure copyright file specification URI.
* Use secure URI in Homepage field.
* Bump debhelper from old 9 to 12.
* Set debhelper-compat version in Build-Depends.
* Remove unnecessary 'Testsuite: autopkgtest' header.
* Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
Repository-Browse.
* Update Vcs-* headers from URL redirect.
* Use canonical URL in Vcs-Git.
* Update watch file format version to 4.
* Bump debhelper from old 12 to 13.
-- Lucas Nussbaum <email address hidden> Mon, 04 Aug 2025 12:45:18 +0000
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 | Published | Component | Section | |
|---|---|---|---|---|
| Resolute | release | universe | misc |
Downloads
| File | Size | SHA-256 Checksum |
|---|---|---|
| ruby-dirty-memoize_0.0.4-2.dsc | 2.1 KiB | 1535fc54e5f66976d4dfa9f1d05018224d21af559519b05d75c422f4b1258460 |
| ruby-dirty-memoize_0.0.4.orig.tar.gz | 6.2 KiB | 60fc15f23e446da2ac511dba8efca62e04699f8e40a10c849d0c8300073e2068 |
| ruby-dirty-memoize_0.0.4-2.debian.tar.xz | 2.7 KiB | 755bf5851105efd0a152213647e6e9574b38d05d80c74a21e8fb119bb34fe272 |
Available diffs
- diff from 0.0.4-1.1 to 0.0.4-2 (1.5 KiB)
No changes file available.
Binary packages built by this source
- ruby-dirty-memoize: Similar to ruby-memoize, but for mutable and parameterizable objects
The dirty-memoize library can help making your program faster in the
following cases:
.
- You have one expensive method which sets many internal variables,
thus lazy evaluation of these dependent variables is preferred.
- The expensive operation depends on one or more parameters
- Changes to one or more parameters affect all dependent variables
- You may want to hide the call to the 'compute' operation
