From b1bd652fe90a091a33e19bd15f30701b03462f92 Mon Sep 17 00:00:00 2001 From: dnoonan Date: Wed, 3 Oct 2012 15:45:34 -0300 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a5f0329..1606c3a 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Sisyphus automatically works with all your forms, including custom form builders ### Exclude a form -To stop Sisyphus from initializing on a form include the *with_sisyphus* option in your form_for. +To stop Sisyphus from initializing on a form include the *with_sisyphus* option in your form_for. This switch overrides the others <%= form_for User.new, :with_sisyphus=>false do |f| %> ... @@ -56,14 +56,14 @@ To stop Sisyphus from initializing on a form include the *with_sisyphus* option ### Exclude/Include a model -To exclude or include a specific model you can enter it in your ENV or the *sisyphus.yml* file. The configuration takes a comma (,) separated string of __lower case__ model names. +To exclude or include a specific model you can enter it in your ENV or the *sisyphus.yml* file. The configuration takes a comma (,) separated string of __lower case__ model names. This switch takes precedence over the global switch. exclude_models: user include_models: comment,post -### Include/Exclude everything +### Exclude/Include everything -You can also set the *sisyphus_enabled* option to true/false in your ENV or the *sisyphus.yml* file to turn Sisyphus on or off by default. +You can also set the *sisyphus_enabled* option to true/false in your ENV or the *sisyphus.yml* file to turn Sisyphus on or off by default. If no other switches are set this will be used. sisyphus_enabled: false