/[Frey]/trunk/lib/Frey/Path.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/Frey/Path.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 682 - (show annotations)
Tue Dec 2 17:36:51 2008 UTC (15 years, 4 months ago) by dpavlin
File size: 518 byte(s)
move path_size to Frey::Path, rename editor_links to html_links, better links to paths all over

1 package Frey::Path;
2 use Moose::Role;
3 use File::Path;
4
5 =head1 NAME
6
7 Frey::Path - path manipulation role
8
9 =head2 mkbasepath
10
11 $o->mkbasepath('/full/path/with/filename');
12
13 =cut
14
15 sub mkbasepath {
16 my $self = shift;
17 my $base_path = shift;
18 $base_path =~ s{/[^/]+$}{};
19 mkpath $base_path if ! -e $base_path;
20 }
21
22 =head2 path_size
23
24 my $path_size_bytes = $self->path_size( 'lib/path' );
25
26 =cut
27
28 sub path_size {
29 my ($self,$path) = @_;
30 $path .= ' ' . ( -s $path ) . ' bytes';
31 warn "# path_size: $path";
32 return $path;
33 }
34
35 1;

  ViewVC Help
Powered by ViewVC 1.1.26