exvo-auth 0.10.3 → 0.10.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,7 +7,7 @@ class ExvoAuth::SessionStore
7
7
  raise "Please configure :secret_token" unless @secret_token = options[:secret_token]
8
8
  raise "Please configure :domain" unless @domain = options[:domain]
9
9
 
10
- @app = ActionDispatch::Cookies.new(ActionDispatch::Session::CookieStore.new(app, :key => "_exvo_session", :domain => @domain))
10
+ @app = ActionDispatch::Cookies.new(ActionDispatch::Session::CookieStore.new(ActionDispatch::Flash.new(app), :key => "_exvo_session", :domain => @domain))
11
11
  end
12
12
  def call(env)
13
13
  @app.call(env.reverse_merge!(env_defaults))
@@ -1,3 +1,3 @@
1
1
  module ExvoAuth
2
- VERSION = "0.10.3"
2
+ VERSION = "0.10.4"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: exvo-auth
3
3
  version: !ruby/object:Gem::Version
4
- hash: 49
4
+ hash: 63
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 10
9
- - 3
10
- version: 0.10.3
9
+ - 4
10
+ version: 0.10.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jacek Becela
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-12-13 00:00:00 +01:00
18
+ date: 2010-12-16 00:00:00 +01:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency