• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H17-Mar-2005-2613

t/H17-Mar-2005-289195

ChangesH A D17-Mar-2005844 2619

MANIFESTH A D16-Feb-2005276 1514

META.ymlH A D17-Mar-2005341 1210

Makefile.PLH A D16-Feb-2005603 1512

READMEH A D16-Feb-2005836 3623

Refactor.pmH A D17-Mar-200518.5 KiB706320

test.plH A D16-Feb-2005737 3321

README

1Devel/Refactor version 0.04
2=========================
3
4The Devel::Refactor module is for code refactoring.  Pass it a
5a snippet of Perl code that belongs in its own subroutine as
6well as a name for that sub.  It figures out which variables
7need to be passed into the sub, and which variables might be
8passed back.  It then produces the sub along with a call to
9the sub.
10
11Included in this module is an example script that pulls the
12snippet of code from the KDE clipboard in Linux and passes
13back the transformed code the same way.
14
15INSTALLATION
16
17To install this module type the following:
18
19   perl Makefile.PL
20   make
21   make test
22   make install
23
24DEPENDENCIES
25
26None.
27
28COPYRIGHT AND LICENCE
29
30
31Copyright (C) 2005 Scott Sotka
32
33This library is free software; you can redistribute it and/or modify
34it under the same terms as Perl itself.
35
36