Changeset 16290 for lang/perl/Aspect
- Timestamp:
- 07/25/08 06:09:58 (4 months ago)
- Location:
- lang/perl/Aspect/trunk
- Files:
-
- 20 modified
-
Changes (modified) (1 diff)
-
lib/Aspect.pm (modified) (1 diff)
-
lib/Aspect/Advice.pm (modified) (1 diff)
-
lib/Aspect/AdviceContext.pm (modified) (1 diff)
-
lib/Aspect/Hook/LexWrap.pm (modified) (1 diff)
-
lib/Aspect/Library/Listenable.pm (modified) (1 diff)
-
lib/Aspect/Library/Memoize.pm (modified) (1 diff)
-
lib/Aspect/Library/Profiler.pm (modified) (2 diffs)
-
lib/Aspect/Library/Singleton.pm (modified) (1 diff)
-
lib/Aspect/Library/TestClass.pm (modified) (1 diff)
-
lib/Aspect/Library/Wormhole.pm (modified) (1 diff)
-
lib/Aspect/Modular.pm (modified) (1 diff)
-
lib/Aspect/Pointcut.pm (modified) (1 diff)
-
lib/Aspect/Pointcut/AndOp.pm (modified) (1 diff)
-
lib/Aspect/Pointcut/BinOp.pm (modified) (1 diff)
-
lib/Aspect/Pointcut/Call.pm (modified) (1 diff)
-
lib/Aspect/Pointcut/Cflow.pm (modified) (1 diff)
-
lib/Aspect/Pointcut/NotOp.pm (modified) (1 diff)
-
lib/Aspect/Pointcut/OrOp.pm (modified) (1 diff)
-
lib/Aspect/Weaver.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Aspect/trunk/Changes
r16288 r16290 1 1 Revision history for Perl extension Aspect 2 3 0.15 Thu Jul 24 23:02:11 CEST 2008 (Marcel Gruenauer <marcel@cpan.org>) 4 - fixed version in all modules. *sigh* 2 5 3 6 0.14 Thu Jul 24 22:46:43 CEST 2008 (Marcel Gruenauer <marcel@cpan.org>) -
lang/perl/Aspect/trunk/lib/Aspect.pm
r16288 r16290 11 11 12 12 13 our $VERSION = '0.1 4';13 our $VERSION = '0.15'; 14 14 15 15 -
lang/perl/Aspect/trunk/lib/Aspect/Advice.pm
r16279 r16290 8 8 9 9 10 our $VERSION = '0.1 3';10 our $VERSION = '0.15'; 11 11 12 12 -
lang/perl/Aspect/trunk/lib/Aspect/AdviceContext.pm
r16279 r16290 6 6 7 7 8 our $VERSION = '0.1 3';8 our $VERSION = '0.15'; 9 9 10 10 -
lang/perl/Aspect/trunk/lib/Aspect/Hook/LexWrap.pm
r16285 r16290 8 8 9 9 10 our $VERSION = '0.1 3';10 our $VERSION = '0.15'; 11 11 12 12 -
lang/perl/Aspect/trunk/lib/Aspect/Library/Listenable.pm
r16285 r16290 11 11 12 12 13 our $VERSION = '0.1 3';13 our $VERSION = '0.15'; 14 14 15 15 -
lang/perl/Aspect/trunk/lib/Aspect/Library/Memoize.pm
r16285 r16290 8 8 9 9 10 our $VERSION = '0.1 3';10 our $VERSION = '0.15'; 11 11 12 12 -
lang/perl/Aspect/trunk/lib/Aspect/Library/Profiler.pm
r16285 r16290 7 7 8 8 9 our $VERSION = '0.1 3';9 our $VERSION = '0.15'; 10 10 11 11 12 12 use base 'Aspect::Modular'; 13 13 14 my $Timer = Benchmark::Timer::ReportOnDestroy->new;14 my $Timer = Aspect::Benchmark::Timer::ReportOnDestroy->new; 15 15 16 16 sub get_advice { … … 21 21 } 22 22 23 package Benchmark::Timer::ReportOnDestroy;23 package Aspect::Benchmark::Timer::ReportOnDestroy; 24 24 use base qw(Benchmark::Timer); 25 25 sub DESTROY { print scalar shift->reports } -
lang/perl/Aspect/trunk/lib/Aspect/Library/Singleton.pm
r16285 r16290 7 7 8 8 9 our $VERSION = '0.1 3';9 our $VERSION = '0.15'; 10 10 11 11 -
lang/perl/Aspect/trunk/lib/Aspect/Library/TestClass.pm
r16285 r16290 8 8 9 9 10 our $VERSION = '0.1 3';10 our $VERSION = '0.15'; 11 11 12 12 -
lang/perl/Aspect/trunk/lib/Aspect/Library/Wormhole.pm
r16285 r16290 7 7 8 8 9 our $VERSION = '0.1 3';9 our $VERSION = '0.15'; 10 10 11 11 -
lang/perl/Aspect/trunk/lib/Aspect/Modular.pm
r16285 r16290 6 6 7 7 8 our $VERSION = '0.1 3';8 our $VERSION = '0.15'; 9 9 10 10 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut.pm
r16279 r16290 10 10 11 11 12 our $VERSION = '0.1 3';12 our $VERSION = '0.15'; 13 13 14 14 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/AndOp.pm
r16279 r16290 6 6 7 7 8 our $VERSION = '0.1 3';8 our $VERSION = '0.15'; 9 9 10 10 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/BinOp.pm
r16279 r16290 6 6 7 7 8 our $VERSION = '0.1 3';8 our $VERSION = '0.15'; 9 9 10 10 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/Call.pm
r16279 r16290 6 6 7 7 8 our $VERSION = '0.1 3';8 our $VERSION = '0.15'; 9 9 10 10 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/Cflow.pm
r16279 r16290 7 7 8 8 9 our $VERSION = '0.1 3';9 our $VERSION = '0.15'; 10 10 11 11 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/NotOp.pm
r16279 r16290 6 6 7 7 8 our $VERSION = '0.1 3';8 our $VERSION = '0.15'; 9 9 10 10 -
lang/perl/Aspect/trunk/lib/Aspect/Pointcut/OrOp.pm
r16279 r16290 6 6 7 7 8 our $VERSION = '0.1 3';8 our $VERSION = '0.15'; 9 9 10 10 -
lang/perl/Aspect/trunk/lib/Aspect/Weaver.pm
r16279 r16290 8 8 9 9 10 our $VERSION = '0.1 3';10 our $VERSION = '0.15'; 11 11 12 12
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)