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

Fix RuboCop offenses

This commit is contained in:
Erik Michaels-Ober 2014-01-16 05:00:46 +01:00
parent e8f5c67627
commit d9683a8880
21 changed files with 592 additions and 555 deletions

View file

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