Class: EasyRackOpenId::Server
- Inherits:
-
Object
- Object
- EasyRackOpenId::Server
- Defined in:
- lib/easy-rack-open-id/server.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, options = {}) ⇒ Server
constructor
A new instance of Server.
Constructor Details
#initialize(app, options = {}) ⇒ Server
Returns a new instance of Server.
3 4 5 6 |
# File 'lib/easy-rack-open-id/server.rb', line 3 def initialize(app, ={}) @app = app @options = end |
Instance Method Details
#call(env) ⇒ Object
8 9 10 |
# File 'lib/easy-rack-open-id/server.rb', line 8 def call(env) Processing.new(@app,@options).call(env) end |