Module: SslRequirement::ClassMethods
- Defined in:
- lib/ssl_requirement.rb
Instance Method Summary collapse
-
#ssl_allowed(*actions) ⇒ Object
To allow SSL for any action pass :all as action like this: ssl_allowed :all.
- #ssl_exceptions(*actions) ⇒ Object
-
#ssl_required(*actions) ⇒ Object
Specifies that the named actions requires an SSL connection to be performed (which is enforced by ensure_proper_protocol).
Instance Method Details
#ssl_allowed(*actions) ⇒ Object
To allow SSL for any action pass :all as action like this: ssl_allowed :all
66 67 68 |
# File 'lib/ssl_requirement.rb', line 66 def ssl_allowed(*actions) write_inheritable_array(:ssl_allowed_actions, actions) end |
#ssl_exceptions(*actions) ⇒ Object
60 61 62 |
# File 'lib/ssl_requirement.rb', line 60 def ssl_exceptions(*actions) write_inheritable_array(:ssl_required_except_actions, actions) end |
#ssl_required(*actions) ⇒ Object
Specifies that the named actions requires an SSL connection to be performed (which is enforced by ensure_proper_protocol).
56 57 58 |
# File 'lib/ssl_requirement.rb', line 56 def ssl_required(*actions) write_inheritable_array(:ssl_required_actions, actions) end |