[Catalyst-commits] r6912 - in trunk/Catalyst-Plugin-ConfigLoader-Remote: . lib/Catalyst/Plugin/ConfigLoader

jshirley at dev.catalyst.perl.org jshirley at dev.catalyst.perl.org
Mon Sep 17 20:19:30 GMT 2007


Author: jshirley
Date: 2007-09-17 20:19:30 +0100 (Mon, 17 Sep 2007)
New Revision: 6912

Removed:
   trunk/Catalyst-Plugin-ConfigLoader-Remote/MANIFEST
Modified:
   trunk/Catalyst-Plugin-ConfigLoader-Remote/lib/Catalyst/Plugin/ConfigLoader/Remote.pm
Log:
Fixing config example for new idea, deleting MANIFEST.

Deleted: trunk/Catalyst-Plugin-ConfigLoader-Remote/MANIFEST
===================================================================
--- trunk/Catalyst-Plugin-ConfigLoader-Remote/MANIFEST	2007-09-17 19:01:55 UTC (rev 6911)
+++ trunk/Catalyst-Plugin-ConfigLoader-Remote/MANIFEST	2007-09-17 19:19:30 UTC (rev 6912)
@@ -1,23 +0,0 @@
-Changes
-inc/Module/AutoInstall.pm
-inc/Module/Install.pm
-inc/Module/Install/AutoInstall.pm
-inc/Module/Install/Base.pm
-inc/Module/Install/Can.pm
-inc/Module/Install/Fetch.pm
-inc/Module/Install/Include.pm
-inc/Module/Install/Makefile.pm
-inc/Module/Install/Metadata.pm
-inc/Module/Install/Win32.pm
-inc/Module/Install/WriteAll.pm
-lib/Catalyst/Plugin/ConfigLoader/Remote.pm
-Makefile.PL
-MANIFEST
-META.yml			# Will be created by "make dist"
-README
-t/00-load.t
-t/lib/TestApp.pm
-t/lib/TestApp/root/static/config.yml
-t/live.t
-t/pod-coverage.t
-t/pod.t

Modified: trunk/Catalyst-Plugin-ConfigLoader-Remote/lib/Catalyst/Plugin/ConfigLoader/Remote.pm
===================================================================
--- trunk/Catalyst-Plugin-ConfigLoader-Remote/lib/Catalyst/Plugin/ConfigLoader/Remote.pm	2007-09-17 19:01:55 UTC (rev 6911)
+++ trunk/Catalyst-Plugin-ConfigLoader-Remote/lib/Catalyst/Plugin/ConfigLoader/Remote.pm	2007-09-17 19:19:30 UTC (rev 6912)
@@ -36,10 +36,12 @@
  use URI;
 
  __PACKAGE__->config(
-    files => [
-        URI->new("https://secure.example.com/config/basic.yml"),
-        URI->new("https://secure.example.com/config/database.conf"),
-    ]
+    'Plugin::ConfigLoader::Remote' => {
+        files => [
+            URI->new("https://secure.example.com/config/basic.yml"),
+            URI->new("https://secure.example.com/config/database.conf"),
+        ]
+    }
  );
 
 =head1 METHODS




More information about the Catalyst-commits mailing list