1
0
Fork 0
mirror of https://github.com/omniauth/omniauth.git synced 2022-11-09 12:31:49 -05:00

Merging master.

This commit is contained in:
Michael Bleigh 2011-09-03 15:08:07 -03:00
commit 3dbfdff127
68 changed files with 2208 additions and 245 deletions

View file

@ -0,0 +1,8 @@
class OmniAuth::Test::PhonySession
def initialize(app); @app = app end
def call(env)
@session ||= (env['rack.session'] || {})
env['rack.session'] = @session
@app.call(env)
end
end