devise_cas_authenticatable 1.9.1 → 1.9.2
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 +4 -4
- data/.travis.yml +21 -2
- data/CHANGELOG.md +4 -0
- data/devise_cas_authenticatable.gemspec +1 -1
- data/lib/devise_cas_authenticatable/railtie.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8de8486aaa1f507d4c779cb6760fbea0e0df674f
|
|
4
|
+
data.tar.gz: 4c14c2a4244955d34313f410c19e3cf200cc1310
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c6bff3844aaf793898f9f8f1143e4c5d1b0147df0978ade7349197b67291f01e4cdd81bea36518ad3febb54c8e628f70443c988f208b662a3b5c42b5da48c96
|
|
7
|
+
data.tar.gz: e4681ebf099b61e795d05c821c4823dad52cd3f1e1a5fc913b574f72971d5ce4243859a9c69582adc99d17f36bf592de1edcf48e4e24fb8cac202e82ba7cac7f
|
data/.travis.yml
CHANGED
|
@@ -4,8 +4,6 @@ rvm:
|
|
|
4
4
|
- 2.1.2
|
|
5
5
|
- 2.2.4
|
|
6
6
|
- 2.3.0
|
|
7
|
-
before_install:
|
|
8
|
-
- gem update bundler
|
|
9
7
|
gemfile:
|
|
10
8
|
- Gemfile.devise12
|
|
11
9
|
- Gemfile.devise13
|
|
@@ -14,6 +12,27 @@ gemfile:
|
|
|
14
12
|
- Gemfile.devise20
|
|
15
13
|
- Gemfile.devise21
|
|
16
14
|
- Gemfile.devise30
|
|
15
|
+
|
|
16
|
+
# Exclude unsupported Ruby/Rails combinations
|
|
17
|
+
matrix:
|
|
18
|
+
exclude:
|
|
19
|
+
- rvm: 1.9.3
|
|
20
|
+
gemfile: Gemfile.devise30
|
|
21
|
+
- rvm: 2.0.0
|
|
22
|
+
gemfile: Gemfile.devise30
|
|
23
|
+
- rvm: 2.1.2
|
|
24
|
+
gemfile: Gemfile.devise30
|
|
25
|
+
- rvm: 2.2.4
|
|
26
|
+
gemfile: Gemfile.devise12
|
|
27
|
+
- rvm: 2.2.4
|
|
28
|
+
gemfile: Gemfile.devise13
|
|
29
|
+
- rvm: 2.3.0
|
|
30
|
+
gemfile: Gemfile.devise12
|
|
31
|
+
- rvm: 2.3.0
|
|
32
|
+
gemfile: Gemfile.devise13
|
|
33
|
+
|
|
34
|
+
before_install:
|
|
35
|
+
- gem update bundler
|
|
17
36
|
script: "bundle exec rake spec"
|
|
18
37
|
sudo: required
|
|
19
38
|
dist: trusty
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog for devise\_cas\_authenticatable
|
|
2
2
|
|
|
3
|
+
## Version 1.9.2 - July 6, 2016
|
|
4
|
+
|
|
5
|
+
* Fix middleware syntax for Rails 5 compatibility (thanks @drobny!)
|
|
6
|
+
|
|
3
7
|
## Version 1.9.1 - May 11, 2016
|
|
4
8
|
|
|
5
9
|
* Remove Gemfile symlink from built gem; hopefully this will make installation easier on Windows
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{devise_cas_authenticatable}
|
|
5
|
-
s.version = "1.9.
|
|
5
|
+
s.version = "1.9.2"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["Nat Budin", "Jeremy Haile"]
|
|
@@ -4,7 +4,11 @@ require 'rails'
|
|
|
4
4
|
module DeviseCasAuthenticatable
|
|
5
5
|
class Railtie < ::Rails::Railtie
|
|
6
6
|
initializer "devise_cas_authenticatable.use_rack_middleware" do |app|
|
|
7
|
-
|
|
7
|
+
if Rails::VERSION::MAJOR < 5
|
|
8
|
+
app.config.middleware.use "DeviseCasAuthenticatable::SingleSignOut::StoreSessionId"
|
|
9
|
+
else
|
|
10
|
+
app.config.middleware.use DeviseCasAuthenticatable::SingleSignOut::StoreSessionId
|
|
11
|
+
end
|
|
8
12
|
end
|
|
9
13
|
end
|
|
10
14
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: devise_cas_authenticatable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nat Budin
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-07-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: devise
|
|
@@ -309,7 +309,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
309
309
|
version: 1.3.1
|
|
310
310
|
requirements: []
|
|
311
311
|
rubyforge_project:
|
|
312
|
-
rubygems_version: 2.4
|
|
312
|
+
rubygems_version: 2.6.4
|
|
313
313
|
signing_key:
|
|
314
314
|
specification_version: 4
|
|
315
315
|
summary: CAS authentication module for Devise
|