devise_aaf_rc_authenticatable 0.0.7 → 0.0.8

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f16d0b1ebf68f448e58d2658250f99aba4b240e
4
- data.tar.gz: 52251de15431d83da98c3ccdb7ba7ae7a29b9419
3
+ metadata.gz: 8cada9a01146bf8cdc9c4cfdad58a83d2b2a6376
4
+ data.tar.gz: 0386b4362f2cb6dd64d8b8682030711bd3cc00da
5
5
  SHA512:
6
- metadata.gz: 05a1765d6f31849f51963d4c8af86edd07aa161538ee98293fa74a99fe0429f980026f6ec06a9c0e219d639f6f7f56ea8cc3026ba451bd19eb736f874076b999
7
- data.tar.gz: 24e5f90505b998671887f7151bdbe7cc3c3b309e5b0ff4d117524939814f2488103633b23c2c227f2edd6730f59b631964e30272b429839d2b04817252ee74d1
6
+ metadata.gz: 58d23edd4dfd37028c533da0a4c0d3ec4c69abfc3609d636ce29a6f63a9836ec709f4cfd6f94b22e666933513814521a5ae333fe00c0d1233430decdab102613
7
+ data.tar.gz: f3a54d5e6fd14e524f7ed3e387dc432a8d08f2825d12278086bc59e1658d59e5db86bed9afaca179676ee74f97ddbb4423e17f5c76dca84ac3a004e03be600a6
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.7"
36
+ gemspec.version = "0.0.8"
37
37
  end
38
38
  Jeweler::GemcutterTasks.new
39
39
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.7
1
+ 0.0.8
@@ -16,10 +16,6 @@ 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 :destroy
21
- end
22
-
23
19
  def destroy
24
20
  session.delete(:attributes)
25
21
  session.delete(:jwt)
@@ -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.7 ruby lib
5
+ # stub: devise_aaf_rc_authenticatable 0.0.8 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "devise_aaf_rc_authenticatable"
9
- s.version = "0.0.7"
9
+ s.version = "0.0.8"
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,7 @@ 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]
8
+ get :destroy, :path => mapping.path_names[:aaf_sign_out]
9
9
  end
10
10
 
11
11
  end
@@ -1,4 +1,4 @@
1
1
  module DeviseAafRcAuthenticatable
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
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.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriel Gasser Noblia