[Jifty-commit] r2243 - in jifty/trunk: t

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Dec 1 01:30:24 EST 2006


Author: jesse
Date: Fri Dec  1 01:30:23 2006
New Revision: 2243

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/META.yml
   jifty/trunk/t/01-dependencies.t

Log:
 r45636 at pinglin:  jesse | 2006-12-01 01:30:17 -0500
 * Skip html files when looking for dependencies. This may cause us to miss some modules used only from within mason, but it will stop falsely detecting lines that start with the word "use" in docs.


Modified: jifty/trunk/META.yml
==============================================================================
--- jifty/trunk/META.yml	(original)
+++ jifty/trunk/META.yml	Fri Dec  1 01:30:23 2006
@@ -42,6 +42,7 @@
   Compress::Zlib: 0
   Crypt::CBC: 0
   Crypt::Rijndael: 0
+  DBD::SQLite: 1.11
   Data::Page: 0
   Date::Manip: 0
   DateTime: 0

Modified: jifty/trunk/t/01-dependencies.t
==============================================================================
--- jifty/trunk/t/01-dependencies.t	(original)
+++ jifty/trunk/t/01-dependencies.t	Fri Dec  1 01:30:23 2006
@@ -21,7 +21,7 @@
     return unless -f $_;
     return if $File::Find::dir =~ m!/.svn($|/)!;
     return if $File::Find::name =~ /~$/;
-    return if $File::Find::name =~ /\.pod$/;
+    return if $File::Find::name =~ /\.(pod|html)$/;
     
     # read in the file from disk
     my $filename = $_;


More information about the Jifty-commit mailing list