From: Guillermo Roditi Date: Mon, 29 Dec 2008 17:25:58 +0000 (+0000) Subject: much better X-Git-Tag: 0.00700~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=30858ec77edcaee7ec99ecdbc6b9a93b54cfc75c;p=gitmo%2FMooseX-Emulate-Class-Accessor-Fast.git much better --- diff --git a/Changes b/Changes index 99133a6..aa6e458 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,4 @@ -0.00700 +0.00700 Dec 29, 2008 - Creating a new accessor with the same name as an old one would result in a new attribute with no reader/writer/accessor. Reported by t0m - tests (t0m) diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 index f1bc427..0000000 --- a/MANIFEST +++ /dev/null @@ -1,22 +0,0 @@ -Changes -inc/Module/Install.pm -inc/Module/Install/Base.pm -inc/Module/Install/Can.pm -inc/Module/Install/Fetch.pm -inc/Module/Install/Makefile.pm -inc/Module/Install/Metadata.pm -inc/Module/Install/Win32.pm -inc/Module/Install/WriteAll.pm -lib/MooseX/Adopt/Class/Accessor/Fast.pm -lib/MooseX/Emulate/Class/Accessor/Fast.pm -Makefile.PL -MANIFEST This list of files -META.yml -README -t/accessors.t -t/adopt.t -t/attr_named_meta.t -t/construction.t -t/getset.t -t/lib/TestAdoptCAF.pm -t/no_replace_existing_symbols.t diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP new file mode 100644 index 0000000..f21a21f --- /dev/null +++ b/MANIFEST.SKIP @@ -0,0 +1,29 @@ +# Avoid version control files. +\bRCS\b +\bCVS\b +,v$ +\B\.svn\b + +# Avoid Makemaker generated and utility files. +\bMakefile$ +\bblib +\bMakeMaker-\d +\bpm_to_blib$ +\bblibdirs$ +^MANIFEST\.SKIP$ + +# Avoid Module::Build generated and utility files. +\bBuild$ +\b_build + +# Avoid temp and backup files. +~$ +\.tmp$ +\.old$ +\.bak$ +\#$ +\b\.# +\.DS_Store$ + +# No tarballs! +\.gz$ diff --git a/lib/MooseX/Emulate/Class/Accessor/Fast.pm b/lib/MooseX/Emulate/Class/Accessor/Fast.pm index c37ef35..c0c1b6a 100644 --- a/lib/MooseX/Emulate/Class/Accessor/Fast.pm +++ b/lib/MooseX/Emulate/Class/Accessor/Fast.pm @@ -4,7 +4,7 @@ use Moose::Role; use Class::MOP (); use Scalar::Util (); -our $VERSION = '0.00600'; +our $VERSION = '0.00700'; =head1 NAME