package Acme::MetaSyntactic::RefactorCode; use warnings; use strict; use B::Deobfuscate 0.14; use Acme::MetaSyntactic; use Getopt::Std; =head1 NAME Acme::MetaSyntactic::RefactorCode - Theme and refactor your code! =head1 VERSION Version 0.05 =cut our $VERSION = '0.05'; =head1 SYNOPSIS Acme::MetaSyntactic::RefactorCode helps you give signicant variable names to your code. The default (I theme) way to use it is: perl -MAcme::MetaSyntactic::RefactorCode script.pl > loremipsumed.pl Or the themed version: perl -MAcme::MetaSyntactic::RefactorCode script.pl -t theme > themed.pl Take special care to choose a theme that has sufficient entries to refactor your code. Use this one-liner to get available themes: perl -MAcme::MetaSyntactic -e 'print join "\n",Acme::MetaSyntactic->themes' =head1 ABSTRACT Make your code special, using the theme of your choice available from the great C by BooK. =cut BEGIN { our ( $opt_t ); getopt('t:'); $opt_t = "loremipsum" if not Acme::MetaSyntactic->has_theme($opt_t); $B::Deobfuscate::Dict::RefactorCode::theme = $opt_t; } =head2 import This function is automatically called at import time, and uses L and L to rewrite the code with the theme specified with the C<-t> CLI option. =cut sub import { require O; O->import( 'Deobfuscate', '-DRefactorCode', @_ ); } =head1 AUTHOR Jerome Fenal, C<< >> =head1 BUGS AMSRC will explode if using a theme that has no sufficient entries for your code. B::Deobfuscate seems also to have problems with big code chunks (tried it on the future 0.02 L), some methods calls not being translated. Please report any other bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 ACKNOWLEDGEMENTS Heavily (completely) based on the idea and the code of L by Joshua b. Jore. This module could not have happened without the L module by Philippe "BooK" Bruhat. Many thanks to Adriano Ferreira who sent a patch to make AMSRC work under newer version of L. See RT at L for full details. =head1 COPYRIGHT & LICENSE Copyright 2005 Jérôme Fenal, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut 1; # End of Acme::MetaSyntactic::RefactorCode