shibboleth-rails 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,10 +37,14 @@ module Shibboleth::Rails
37
37
  self.last_login_ip = self.current_login_ip if self.respond_to?(:last_login_ip)
38
38
  self.current_login_ip = request.remote_ip
39
39
  end
40
+
41
+ self.login_callback(request, args) if self.respond_to?(:login_callback)
40
42
  end
41
43
  self.last_request_at = Time.now if self.respond_to?(:last_request_at)
42
44
 
43
45
  save(:validate => false)
46
+
47
+ self.request_callback(request, args) if self.respond_to?(:request_callback)
44
48
  end
45
49
  end
46
50
 
@@ -1,5 +1,5 @@
1
1
  module Shibboleth
2
2
  module Rails
3
- VERSION = "0.4.2"
3
+ VERSION = "0.5.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 4
9
- - 2
10
- version: 0.4.2
8
+ - 5
9
+ - 0
10
+ version: 0.5.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - mikegee
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-05-31 00:00:00 Z
18
+ date: 2012-07-27 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rails
@@ -86,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
86
  requirements: []
87
87
 
88
88
  rubyforge_project: shibboleth-rails
89
- rubygems_version: 1.8.21
89
+ rubygems_version: 1.8.17
90
90
  signing_key:
91
91
  specification_version: 3
92
92
  summary: This Rails plugin integrates Shibboletth single signon.