Source: ruby-dirty-memoize Section: ruby Priority: optional Maintainer: Debian Ruby Extras Maintainers Uploaders: Balint Reczey Build-Depends: debhelper (>= 9~), gem2deb, ruby-rspec, rake, ruby-hoe Standards-Version: 3.9.6 Vcs-Git: git://anonscm.debian.org/pkg-ruby-extras/ruby-dirty-memoize.git Vcs-Browser: https://anonscm.debian.org/gitweb/?p=pkg-ruby-extras/ruby-dirty-memoize.git;a=summary Homepage: http://github.com/clbustos/dirty-memoize Testsuite: autopkgtest XS-Ruby-Versions: all Package: ruby-dirty-memoize Architecture: all XB-Ruby-Versions: ${ruby:Versions} Depends: ${shlibs:Depends}, ${misc:Depends}, ruby | ruby-interpreter Description: 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