├── t └── 00_compile.t ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── Changes └── lib └── Bundle └── Sledge.pm /t/00_compile.t: -------------------------------------------------------------------------------- 1 | use strict; 2 | use Test::More tests => 1; 3 | 4 | BEGIN { use_ok 'Bundle::Sledge' } 5 | -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | MANIFEST This list of files 3 | Makefile.PL 4 | lib/Bundle/Sledge.pm 5 | t/00_compile.t 6 | -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- 1 | \bRCS\b 2 | \bCVS\b 3 | ^MANIFEST\. 4 | ^Makefile$ 5 | ~$ 6 | \.old$ 7 | ^blib/ 8 | ^pm_to_blib 9 | ^MakeMaker-\d 10 | \.gz$ 11 | \.cvsignore 12 | -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- 1 | use ExtUtils::MakeMaker; 2 | WriteMakefile( 3 | 'NAME' => 'Bundle::Sledge', 4 | 'VERSION_FROM' => 'lib/Bundle/Sledge.pm', # finds $VERSION 5 | 'PREREQ_PM' => { 6 | Test::More => 0.32, 7 | }, 8 | ); 9 | -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- 1 | Revision history for Perl extension Bundle::Sledge 2 | 3 | 0.03 Thu Feb 20 13:47:03 JST 2003 4 | - Added Storable 5 | 6 | 0.02 Sun Feb 16 23:38:30 JST 2003 7 | - Added CGI.pm and LWP 8 | 9 | 0.01 Thu Feb 13 19:17:12 2003 10 | - original version 11 | -------------------------------------------------------------------------------- /lib/Bundle/Sledge.pm: -------------------------------------------------------------------------------- 1 | package Bundle::Sledge; 2 | 3 | use strict; 4 | use vars qw($VERSION); 5 | $VERSION = 0.03; 6 | 7 | 1; 8 | __END__ 9 | 10 | =head1 NAME 11 | 12 | Bundle::Sledge - Bundle to install all Sledge related modules 13 | 14 | =head1 SYNOPSIS 15 | 16 | perl -MCPAN -e 'install Bundle::Sledge' 17 | 18 | =head1 CONTENTS 19 | 20 | Apache::Request - Methods for dealing with client request 21 | 22 | Apache::Reload - Reload changed modules 23 | 24 | Test::Inline - Inlining your tests next to the code being 25 | 26 | Carp::Assert - executable comments 27 | 28 | Class::Fields - Inspect the fields of a class. 29 | 30 | Class::Accessor - Automated accessor generation 31 | 32 | Class::Data::Inheritable - Inheritable, overridable class 33 | 34 | Class::Singleton - Implementation of a "Singleton" class 35 | 36 | Class::Trigger - Mixin to add / call inheritable triggers 37 | 38 | Digest::SHA1 - Perl interface to the SHA-1 Algorithm 39 | 40 | File::Spec - portably perform operations on file names 41 | 42 | File::Temp - return name and handle of a temporary file 43 | 44 | HTML::FillInForm - Populates HTML Forms with CGI data. 45 | 46 | HTML::Template - Perl module to use HTML Templates from 47 | 48 | HTML::StickyQuery - add sticky QUERY_STRING 49 | 50 | IO::Stringy - I/O on in-core objects like strings and arrays 51 | 52 | Jcode - Japanese Charset Handler 53 | 54 | Test::Simple - Basic utilities for writing tests. 55 | 56 | Test::Harness - run perl standard test scripts with 57 | 58 | Time::HiRes - High resolution alarm, sleep, gettimeofday, 59 | 60 | URI - Uniform Resource Identifiers (absolute and relative) 61 | 62 | Errno - System errno constants 63 | 64 | Template - Front-end module to the Template Toolkit 65 | 66 | Data::Properties - persistent properties 67 | 68 | Error 0.15 - Error/exception handling in an OO-ish way 69 | 70 | LWP - The World-Wide Web library for Perl 71 | 72 | CGI 2.47 - Simple Common Gateway Interface Class 73 | 74 | Storable - persistency for perl data structures 75 | 76 | =head1 DESCRIPTION 77 | 78 | Sledge is yet another MVC Web Application Framework. 79 | 80 | Bundle::Sledge is a bundle to install all Sledge related modules. See 81 | http://sl.edge.jp/ (Japanese) or 82 | http://sourceforge.jp/projects/sledge to get more detailed 83 | information on Sledge. 84 | 85 | =head1 AUTHOR 86 | 87 | Tatsuhiko Miyagawa Emiyagawa@bulknews.netE 88 | 89 | This library is free software; you can redistribute it and/or modify 90 | it under the same terms as Perl itself. 91 | 92 | =head1 SEE ALSO 93 | 94 | http://sl.edge.jp/ 95 | 96 | http://sourceforge.jp/projects/sledge 97 | 98 | =cut 99 | --------------------------------------------------------------------------------