Smoke trial release 0.00_01
[p5sagit/Devel-GlobalDestruction-XS.git] / lib / Devel / GlobalDestruction / XS.pm
1 package Devel::GlobalDestruction::XS;
2 use strict;
3 use warnings;
4
5 our $VERSION = '0.00_01';
6
7 require XSLoader;
8 XSLoader::load(__PACKAGE__, $VERSION);
9
10 1;  # keep require happy
11
12 __END__
13
14 =head1 NAME
15
16 Devel::GlobalDestruction::XS - Faster implementation of the Devel::GlobalDestruction API
17
18 =head1 SYNOPSIS
19
20     use Devel::GlobalDestruction;
21
22 =head1 DESCRIPTION
23
24 This is an XS backend for L<Devel::GlobalDestruction> and should be used through that module.
25
26 =head1 AUTHORS
27
28 Yuval Kogman E<lt>nothingmuch@woobling.orgE<gt>
29
30 Florian Ragwitz E<lt>rafl@debian.orgE<gt>
31
32 Jesse Luehrs E<lt>doy@tozt.netE<gt>
33
34 Peter Rabbitson E<lt>ribasushi@cpan.orgE<gt>
35
36 Arthur Axel 'fREW' Schmidt E<lt>frioux@gmail.comE<gt>
37
38 Elizabeth Mattijsen E<lt>liz@dijkmat.nlE<gt>
39
40 Greham Knop E<lt>haarg@haarg.orgE<gt>
41
42 =head1 COPYRIGHT
43
44     Copyright (c) 2008 Yuval Kogman. All rights reserved
45     This program is free software; you can redistribute
46     it and/or modify it under the same terms as Perl itself.
47
48 =cut