Skip to content

Commit

Permalink
Version bump and doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Nat Budin committed May 8, 2015
1 parent 8eb3d06 commit 26b2d82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for devise\_cas\_authenticatable

## Version 1.4.0 - May 8, 2015

* Allow changing the CAS response field used as the unique key for finding users (thanks once again to @gmoore!)

## Version 1.3.8 - April 24, 2015

* Remove a deprecated dependency (thanks to @gmoore)
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using [rubycas-server](http://github.com/gunark/rubycas-server)).
Requirements
------------

- Rails 2.3 or greater (works with 3.x versions as well)
- Rails 2.3 or greater (works with 3.x and 4.x versions as well)
- Devise 1.0 or greater
- rubycas-client

Expand Down Expand Up @@ -81,14 +81,19 @@ to tell your app how to talk to your CAS server:
# You can specify the name of the destination argument with the following option.
# e.g. the following option will change it from 'destination' to 'url'
# config.cas_destination_logout_param_name = 'url'

# By default, devise_cas_authenticatable will create users. If you would rather
# require user records to already exist locally before they can authenticate via
# CAS, uncomment the following line.
# config.cas_create_user = false

# You can enable Single Sign Out, which by default is disabled.
# config.cas_enable_single_sign_out = true
# If you don't want to use the username returned from your CAS server as the unique
# identifier, but some other field passed in cas_extra_attributes, you can specify
# the field name here.
# config.cas_user_identifier = nil

# If you want to use the Devise Timeoutable module with single sign out,
# uncommenting this will redirect timeouts to the logout url, so that the CAS can
Expand Down
2 changes: 1 addition & 1 deletion devise_cas_authenticatable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{devise_cas_authenticatable}
s.version = "1.3.8"
s.version = "1.4.0"

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Nat Budin", "Jeremy Haile"]
Expand Down

0 comments on commit 26b2d82

Please sign in to comment.