Flowdock
new(secret = nil, host = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/cookies.rb, line 107
      def initialize(secret = nil, host = nil)
        @secret = secret
        @set_cookies = {}
        @delete_cookies = {}
        @host = host

        super()
      end
Register or log in to add new notes.