Changeset 8965 for lang/perl/Acme-PSON
- Timestamp:
- 04/06/08 10:42:04 (8 months ago)
- Location:
- lang/perl/Acme-PSON/trunk
- Files:
-
- 4 modified
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (1 diff)
-
Makefile.PL (modified) (1 diff)
-
lib/Acme/PSON.pm (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Acme-PSON/trunk/Changes
r2246 r8965 1 1 Revision history for Acme-PSON 2 3 0.02 2008-04-06/10:18 4 - FIX typo 5 - using Module::Install 2 6 3 7 0.01 2007-05-19/13:12 -
lang/perl/Acme-PSON/trunk/MANIFEST
r2246 r8965 1 1 Changes 2 inc/Module/AutoInstall.pm 3 inc/Module/Install.pm 4 inc/Module/Install/AutoInstall.pm 5 inc/Module/Install/Base.pm 6 inc/Module/Install/Can.pm 7 inc/Module/Install/Fetch.pm 8 inc/Module/Install/Include.pm 9 inc/Module/Install/Makefile.pm 10 inc/Module/Install/Metadata.pm 11 inc/Module/Install/Win32.pm 12 inc/Module/Install/WriteAll.pm 13 lib/Acme/PSON.pm 14 Makefile.PL 2 15 MANIFEST 3 M akefile.PL16 META.yml 4 17 README 5 lib/Acme/PSON.pm6 18 t/00-load.t 7 19 t/01-app.t -
lang/perl/Acme-PSON/trunk/Makefile.PL
r2246 r8965 1 1 use strict; 2 2 use warnings; 3 use ExtUtils::MakeMaker;3 use inc::Module::Install; 4 4 5 WriteMakefile( 6 NAME => 'Acme::PSON', 7 AUTHOR => 'Tomohiro Teranishi <tomohiro.teranishi@gmail.com>', 8 VERSION_FROM => 'lib/Acme/PSON.pm', 9 ABSTRACT_FROM => 'lib/Acme/PSON.pm', 10 PL_FILES => {}, 11 PREREQ_PM => { 12 'Test::More' => 0, 13 'Readonly' => 0, 14 }, 15 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, 16 clean => { FILES => 'Acme-PSON-*' }, 17 ); 5 name 'Acme-PSON'; 6 author 'Tomohiro Teranishi <tomohiro.teranishi@gmail.com>'; 7 all_from 'lib/Acme/PSON.pm'; 8 requires 'Test::More' => 0; 9 requires 'Readonly' => 0; 10 license 'perl'; 11 auto_install; 12 WriteAll; -
lang/perl/Acme-PSON/trunk/lib/Acme/PSON.pm
r8953 r8965 4 4 use warnings; 5 5 6 our $VERSION = '0.0 1';6 our $VERSION = '0.02'; 7 7 8 8 use strict; … … 22 22 local $Data::Dumper::Indent = 0; 23 23 local $Data::Dumper::Varname = $VARNAME; 24 return Dumper( $obj);24 return Dumper($obj); 25 25 } 26 26 … … 30 30 no strict; 31 31 32 &_is_dumpeddata( $str ) ? eval ( $str) : croak "No PSON Data!";32 &_is_dumpeddata($str) ? eval($str) : croak "No PSON Data!"; 33 33 } 34 34 … … 36 36 my $str = shift; 37 37 38 return ( $str =~ /^\$$VARNAME/) ? 1 : 0;38 return ( $str =~ /^\$$VARNAME/ ) ? 1 : 0; 39 39 } 40 40 … … 47 47 =head1 SYNOPSIS 48 48 49 use PSON qw(obj2pson pson2obj);49 use Acme::PSON qw(obj2pson pson2obj); 50 50 51 51 my $data = { x=> 'adfs' , y => 'adf' }; … … 74 74 Tomohiro Teranishi <tomohiro.teranishi@gmail.com> 75 75 76 =head1 COPYRIGHT AND LISENCE 77 78 Copyright (c) Tomohiro Teranishi, All rights reserved. 79 80 This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L<perlartistic>. 81 76 82 =cut
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)