summaryrefslogtreecommitdiff
path: root/_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-07-02 20:04:59 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-07-02 20:04:59 -0700
commit8f187c573954b6c8d1650ac33a164c52e032ac16 (patch)
treec605d0cf51d272393006e5486bfdc24984cf801f /_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
parentUpdate some posts to make the tests pass. (diff)
downloadlumberjaph-8f187c573954b6c8d1650ac33a164c52e032ac16.tar.gz
Stop using Jekyll.
Moving away from Jekyll to Hugo. This commit clean up the old files to prepare for the migration.
Diffstat (limited to '_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md')
-rw-r--r--_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md b/_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
deleted file mode 100644
index 0592f4f..0000000
--- a/_posts/2009-06-25-how-to-prevent-some-components-to-be-loaded-by-catalyst.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-layout: post
-summary: In which I show how to disable some components in Catalyst.
-title: How to prevent some components to be loaded by Catalyst
-type: codex
----
-
-Let's say you have a large [Catalyst](http://search.cpan.org/perldoc?Catalyst) application, with a lot of compoments. When you deploy your application, or when you want to test it while your developping, you may not want to have some of thoses components loaded (you don't have all the dependencies, they are incompatible, etc...). Catalyst use [Module::Pluggable](http://search.cpan.org/perldoc?Module::Pluggable) to load the components, so you can easily configure this. In your application's configuration, add:
-
-{% highlight yaml %}
-setup_components:
- except:
- - MyApp::Model::AAAA
- - MyAPP::Model::BBBB::REST
- ...
-{% endhighlight %}
-
-Module::Pluggable have some other interesting features. You may have a second Catalyst application, and want to use one or more components from this one. You can easily do this:
-
-{% highlight yaml %}
-setup_components:
- search_path:
- - MyApp
- - MyOtherApp::Model
-{% endhighlight %}