~ubuntu-branches/ubuntu/jaunty/librose-object-perl/jaunty

« back to all changes in this revision

Viewing changes to lib/Rose/Object/MakeMethods.pm

  • Committer: Bazaar Package Importer
  • Author(s): Krzysztof Krzyżaniak (eloy)
  • Date: 2008-05-29 10:55:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080529105502-0rzopo5egx3e6vcj
Tags: 0.85-1
* New upstream release
* Converted to debhelper 7

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
use Carp();
6
6
 
7
 
our $VERSION = '0.82';
 
7
our $VERSION = '0.85';
8
8
 
9
9
__PACKAGE__->allow_apparent_reload(1);
10
10
 
254
254
 
255
255
    while($method_type =~ s/\s+--(\w+)(?:=(\w+))?//)
256
256
    {
257
 
      if($i++ || $2)
 
257
      if($i++ || defined $2)
258
258
      {
259
 
        $method_options{$1} = $2 || 1;
 
259
        $method_options{$1} = $2;
260
260
      }
261
261
      else
262
262
      {
711
711
 
712
712
=head1 AUTHOR
713
713
 
714
 
John C. Siracusa (siracusa@mindspring.com)
 
714
John C. Siracusa (siracusa@gmail.com)
715
715
 
716
716
=head1 COPYRIGHT
717
717