File Coverage

lib/App/Fed/Cookbook.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package App::Fed::Cookbook;
2             ################################################################################
3             #
4             # fed - File editor.
5             #
6             # Copyright (C) 2011 Bartłomiej /Natanael/ Syguła
7             #
8             # This is free software.
9             # It is licensed, and can be distributed under the same terms as Perl itself.
10             #
11             ################################################################################
12 1     1   4556 use warnings; use strict;
  1     1   4  
  1         35  
  1         7  
  1         3  
  1         62  
13              
14             my $VERSION = '0.01_99';
15              
16             =encoding UTF-8
17              
18             =head1 NAME
19              
20             App::Fed::Cookbook - recipes for B.
21              
22             =head1 RECIPES
23              
24             =head2 Merge white spaces (spaces and tabs).
25              
26             fed 's/\s+/ /g' file
27              
28             =head2 Change $VERSION in all modules of a package
29              
30             fed -r "s/VERSION\s*=\s*'0.01_50'/VERSION = '0.01_90'/" lib
31              
32             =head1 SEE ALSO
33              
34             L, L
35              
36             =head1 COPYRIGHT
37              
38             Copyright (C) 2011 Bartłomiej /Natanael/ Syguła
39              
40             This is free software.
41             It is licensed, and can be distributed under the same terms as Perl itself.
42              
43             =cut
44              
45             # vim: fdm=marker
46             1;