Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Devise Version pined to latest stable release #23

Merged
merged 3 commits into from
Nov 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.2.3 (2015-11-30)
* Pins version of devise to 3.5.1 due - https://github.com/plataformatec/devise/issues/3705
* Pins version of omniauth-g5 to v0.3.1 due - https://github.com/G5/omniauth-g5/pull/10

## v0.2.1 (2015-05-28)

* Fixes for compatibility with
Expand All @@ -21,7 +25,7 @@

## v0.1.1 (2014-07-31)

* Find a user by email when a duplicate email exception is returned from
* Find a user by email when a duplicate email exception is returned from
user creation.

## v0.1.0 (2014-03-12)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Devise G5 Authenticatable

Devise G5 Authenticatable extends devise to provide an
[OAuth 2.0](http://oauth.net/2)-based authentication strategy and remote
[OAuth 2.0](http://oauth.net/2)-based authentication strategy and remote
credential management via the G5 Auth service.

Devise G5 Authenticatable is intended as a drop-in replacement for the
Expand All @@ -10,7 +10,7 @@ G5 users.

## Current Version

0.2.1
0.2.3

## Requirements

Expand Down
9 changes: 7 additions & 2 deletions devise_g5_authenticatable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ Gem::Specification.new do |spec|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']

spec.add_dependency 'devise', '~> 3.5'
# Pinned to version 3.5.1 due https://github.com/plataformatec/devise/issues/3705
# "`FailureApp`s `script_name: nil` breaks route generation within mounted engines #3705"
spec.add_dependency 'devise', '= 3.5.1'
spec.add_dependency 'g5_authentication_client', '~> 0.5'
spec.add_dependency 'omniauth-g5', '~> 0.3'

# Pinned to version 0.3.1 due https://github.com/G5/omniauth-g5/pull/10
# Omniauth-auth2 removed 'callback_url' which broke our auth workflow
spec.add_dependency 'omniauth-g5', '= 0.3.1'
end
2 changes: 1 addition & 1 deletion lib/devise_g5_authenticatable/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module DeviseG5Authenticatable
VERSION = '0.2.2'
VERSION = '0.2.3'
end