devise_aaf_rc_authenticatable 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cc9b78bbeea960ba71f2cdd4d237bc64a7283e6b
4
- data.tar.gz: bb854395071caf43f2831158ef22aced2edd99bd
3
+ metadata.gz: a8c8316d40e6717db312043028f643936e63df4b
4
+ data.tar.gz: 6a3965d4d29bd690efe8a80fe012a44761018b2a
5
5
  SHA512:
6
- metadata.gz: 592901c5ce2f1aed235b692d22d885d268197bce767f03de3d2e60aa9cc8564138b2bb8dd80a35bbd77600aec571a46e7c3be3329ba54fe42b259851b7c6a150
7
- data.tar.gz: 67c87866a544d397ff4ca183b57799390da1abcfae50e5e01451550a458a339c8e7147cc41f0bc2af410f87433c0b28e16420dc535b224f153cec244edfcb878
6
+ metadata.gz: 5f13faa43dcaeae522d76dc04954393a557b9c4a6a935a2b106e4205fb9ca902c272d36af53c46087b8eb78a716e91c9287b3731b1259013c733268a15f83ceb
7
+ data.tar.gz: 7b18f1a94c315776a5422b58378c9e8c8be37b80cb2fa5a70cb404c2b2b2ece6df92a3636b20cb4499af04e5bc7eb20696a2667777edebb0d0ff39b554abb891
data/Rakefile CHANGED
@@ -33,7 +33,7 @@ begin
33
33
  gemspec.homepage = "http://github.com/IntersectAustralia/devise_aaf_rc_authenticatable"
34
34
  gemspec.authors = ["Gabriel Gasser Noblia", "Shuqian Hon", "Daniel Theodosius", "Jake Farrell"]
35
35
  gemspec.add_runtime_dependency "devise", ">= 2.2.4"
36
- gemspec.version = "0.0.9"
36
+ gemspec.version = "0.1.0"
37
37
  end
38
38
  Jeweler::GemcutterTasks.new
39
39
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.9
1
+ 0.1.0
@@ -16,15 +16,4 @@ class Devise::AafRcSessionsController < Devise::SessionsController
16
16
  respond_with resource, :location => after_sign_in_path_for(resource)
17
17
  end
18
18
 
19
- def aaf_destroy
20
- redirect_to action: :destroy
21
- end
22
-
23
- def destroy
24
- session.delete(:attributes)
25
- session.delete(:jwt)
26
- session.delete(:jwt_unauthorized)
27
- super
28
- end
29
-
30
19
  end
@@ -2,11 +2,11 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: devise_aaf_rc_authenticatable 0.0.9 ruby lib
5
+ # stub: devise_aaf_rc_authenticatable 0.1.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "devise_aaf_rc_authenticatable"
9
- s.version = "0.0.9"
9
+ s.version = "0.1.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -5,7 +5,6 @@ ActionDispatch::Routing::Mapper.class_eval do
5
5
  resource :session, :only => [], :controller => controllers[:aaf_rc_sessions], :path => "" do
6
6
  get :aaf_new, :path => mapping.path_names[:aaf_new]
7
7
  post :aaf_create, :path => mapping.path_names[:aaf_sign_in]
8
- get :aaf_destroy, :path => mapping.path_names[:aaf_sign_out]
9
8
  end
10
9
 
11
10
  end
@@ -1,4 +1,4 @@
1
1
  module DeviseAafRcAuthenticatable
2
- VERSION = "0.0.9"
2
+ VERSION = "0.1.0"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_aaf_rc_authenticatable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriel Gasser Noblia