Initial checkin
[Data-Peek.git] / README
blob4dcff59cf962a3d201c10e6016f2324d460be8de
1 Module:
2     DDumper
4 Description:
5     Modified and extended wrapper functions to make debugging more
6     pleasureable.
8     DDumper is a wrapper around Data::Dumper with always sorted keys.
9     The output is however reflowed and not parseable anymore (in most
10     cases) as the quotation around the keys is removed.
12     DDump is a wrapper around perl's core function sv_dump (), which
13     should enable you to use the output instead of the default behaviour
14     that only prints to STDERR.
16     DPeek is a wrapper around internals Perl_sv_peek
18 Copying:
19     Copyright (c) 2007-2008 H.Merijn Brand.  All rights reserved.
21     This program is free software; you can redistribute it and/or modify
22     it under the same terms as Perl itself.
24 Prerequisites:
25     Any perl that has sv_dump () exported.
27 Build/Installation:
28     Standard build/installation:
29         perl Makefile.PL
30         make
31         make test
32         make install
33     (The 'make' step cannot be omitted for perl-5.005)
35 Author:
36     H.Merijn Brand <h.m.brand@xs4all.nl>