better method name - _get_config_files -> _config_files_for
Matt S Trout [Tue, 26 Aug 2014 13:47:47 +0000 (13:47 +0000)]
lib/App/SCS/PageSet.pm

index fdaf442..ce4c507 100644 (file)
@@ -61,7 +61,7 @@ sub get {
   );
 }
 
-sub _get_config_files {
+sub _config_files_for {
   my ($self, $path) = @_;
 
   my @files = ();
@@ -92,7 +92,7 @@ sub _inflate {
   my ($self, $type, $path, $io) = @_;
   (my $cache_name = $io->name) =~ s/\/([^\/]+)$/\/.htcache.$1.json/;
   my $cache = io($cache_name);
-  my $config_files = $self->_get_config_files($path);
+  my $config_files = $self->_config_files_for($path);
   my $maxstat = 0;
 
   if (scalar @$config_files) {