aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2012-02-23 12:57:36 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2012-02-23 13:25:13 +0000
commitc04a08470f787ff501440827a6c7b11d6bc34832 (patch)
tree113451f92b75c65a5f6445e8348e54e0133c6ecb /actionpack/lib/action_controller
parentab838900f8a5fac4ad251257a77ae0edf7543942 (diff)
downloadrails-c04a08470f787ff501440827a6c7b11d6bc34832.tar.gz
rails-c04a08470f787ff501440827a6c7b11d6bc34832.tar.bz2
rails-c04a08470f787ff501440827a6c7b11d6bc34832.zip
Update documentation for force_ssl - closes #5023.
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/metal/force_ssl.rb15
1 files changed, 14 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/force_ssl.rb b/actionpack/lib/action_controller/metal/force_ssl.rb
index 17918b8ec7..6feec9262c 100644
--- a/actionpack/lib/action_controller/metal/force_ssl.rb
+++ b/actionpack/lib/action_controller/metal/force_ssl.rb
@@ -18,11 +18,24 @@ module ActionController
# Force the request to this particular controller or specified actions to be
# under HTTPS protocol.
#
- # Note that this method will not be effective on development environment.
+ # If you need to disable this for any reason (e.g. development) then you can use
+ # an +:if+ or +:unless+ condition.
+ #
+ # class AccountsController < ApplicationController
+ # force_ssl :if => :ssl_configured?
+ #
+ # def ssl_configured?
+ # !Rails.env.development?
+ # end
+ # end
#
# ==== Options
# * <tt>only</tt> - The callback should be run only for this action
# * <tt>except<tt> - The callback should be run for all actions except this action
+ # * <tt>if</tt> - A symbol naming an instance method or a proc; the callback
+ # will be called only when it returns a true value.
+ # * <tt>unless</tt> - A symbol naming an instance method or a proc; the callback
+ # will be called only when it returns a false value.
def force_ssl(options = {})
host = options.delete(:host)
before_filter(options) do