File: control

package info (click to toggle)
libclass-refresh-perl 0.07-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 340 kB
  • sloc: perl: 832; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,748 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Source: libclass-refresh-perl
Section: perl
Testsuite: autopkgtest-pkg-perl
Rules-Requires-Root: no
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Build-Depends: debhelper (>= 10)
Build-Depends-Indep: libclass-load-perl,
                     libclass-unload-perl,
                     libdevel-overrideglobalrequire-perl,
                     libmoose-perl,
                     libtest-fatal-perl,
                     libtest-requires-perl,
                     libtry-tiny-perl,
                     perl
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libclass-refresh-perl.git
Homepage: https://metacpan.org/release/Class-Refresh

Package: libclass-refresh-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libclass-load-perl,
         libclass-unload-perl,
         libdevel-overrideglobalrequire-perl,
         libtry-tiny-perl
Description: module for refreshing classes during runtime
 Class::Refresh allows you to reload your application classes on the fly, so
 that the code/test cycle becomes a lot easier.
 .
 During development, it is fairly common to cycle between writing code and
 testing that code. Generally the testing happens within the test suite, but
 frequently it is more convenient to test things by hand when tracking down a
 bug, or when doing some exploratory coding. In many situations, however, this
 becomes inconvenient - for instance, in a REPL, or in a stateful web
 application, restarting from the beginning after every code change can get
 pretty tedious.