[Jifty-commit] r7140 - jifty/trunk/lib/Jifty/Plugin

Jifty commits jifty-commit at lists.jifty.org
Mon Jun 1 18:10:48 EDT 2009


Author: sartak
Date: Mon Jun  1 18:10:48 2009
New Revision: 7140

Modified:
   jifty/trunk/lib/Jifty/Plugin/SetupWizard.pm

Log:
add_step method for less crude addition of config steps

Modified: jifty/trunk/lib/Jifty/Plugin/SetupWizard.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/SetupWizard.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/SetupWizard.pm	Mon Jun  1 18:10:48 2009
@@ -30,5 +30,12 @@
     }
 }
 
+sub add_step {
+    my $self = shift;
+    my %step = @_;
+
+    push @{ $self->steps }, \%step;
+}
+
 1;
 


More information about the Jifty-commit mailing list