José Valim
5badce5e8e
Merge pull request #3372 from Katee/show-min-password-length-on-edit-password
...
Show minimum password length on edit password
2014-12-17 21:18:48 +01:00
Katee
d0a30d485d
Moves minimum_password_length to DeviseController.
2014-12-16 16:14:32 -05:00
Lucas Mazza
2c8e242000
Use Rails 4.2.0.rc3.
2014-12-16 11:03:26 -02:00
Katee
5e12b158d1
Fixes accidentally removed autofocus.
2014-12-15 20:05:46 -05:00
Katee
607bf70674
Shows min password length on edit password view.
2014-12-15 19:52:58 -05:00
José Valim
bf30ddddc0
Merge pull request #3369 from prathamesh-sonpatki/devise-fixes
...
Fix description of find_or_initialize_with_error methods
2014-12-12 08:21:55 +01:00
Prathamesh Sonpatki
13c2d4e807
Fix description of find_or_initialize_with_error methods
...
[ci skip]
2014-12-12 09:26:17 +05:30
José Valim
a9d90503e9
Merge pull request #3318 from BrentWheeldon/bugfix/clear-reset-token
...
Only set token back if password reset fails.
2014-12-02 11:12:12 +01:00
José Valim
c4dfd465d1
Merge pull request #3353 from psgs/readme-update
...
Improve README.md flow
2014-12-02 11:06:38 +01:00
psgs
0522b1eb46
Improve README.md flow
...
Improve the way in which the README.md file flows when read.
2014-12-02 11:41:11 +10:00
Brent Wheeldon
cb89e4435c
Only set token back if password reset fails.
...
This prevents the digested version of the token being saved when a reset
is successful.
2014-12-01 17:58:18 -05:00
Lucas Mazza
6fb466eb1e
Use Rails 4.2.0.rc1
2014-12-01 10:18:00 -02:00
Vasiliy Ermolovich
9e93b9d700
Merge pull request #3351 from gajon/master
...
Trivial doc text correction in authenticatable.rb
2014-12-01 10:36:43 +03:00
Jorge Gajon
640dd97149
Trivial doc text correction in authenticatable.rb
2014-11-30 22:56:44 -06:00
José Valim
681094663b
Merge pull request #3342 from rubyrider/test_reset_password_token_should_match
...
ensuse generated token for reset password token is valid
2014-11-25 15:04:31 +01:00
Irfan Ahmed
0e218d8a01
ensuse digested token for reset password token is valid
2014-11-25 18:32:58 +06:00
Rafael Mendonça França
16005ebcfe
Merge pull request #3333 from rosenfeld/master
...
Remove old references to removed remember_across_browsers option
2014-11-21 19:25:46 -02:00
Rodrigo Rosenfeld Rosas
ae00e0bb20
Remove old references to removed remember_across_browsers option
2014-11-21 17:33:58 -02:00
José Valim
d3d9fba201
Merge pull request #3328 from stephenbaldwin/master
...
Ability to load modules in specific order
2014-11-20 22:39:43 +01:00
Rafael Mendonça França
bb24d18869
Merge pull request #3325 from joshk/patch-2
...
Use the new build env on Travis
2014-11-20 19:16:20 -02:00
Stephen Baldwin
06e0f8adca
Update devise.rb
2014-11-20 16:01:21 -05:00
Stephen Baldwin
a9e87f067a
Ability to load modules in specific order
...
Allow modules to be inserted at set positions
2014-11-20 15:16:46 -05:00
José Valim
840ecb63a2
Merge pull request #3324 from timscott/patch-1
...
Option to validate upon #confirm!
2014-11-20 10:18:44 +01:00
Tim Scott
e9bf72be6a
Use args hash instead of named parameters for confirm!
2014-11-19 18:38:58 -06:00
Tim Scott
3b882dadac
Made ensure valid a named param for confirm!, and added a test.
2014-11-19 16:48:35 -06:00
Josh Kalderimis
3015ac458d
use built in travis caching
...
make sure bundle update is run so that the latest gems are used
2014-11-19 17:08:07 -05:00
Josh Kalderimis
4599b57798
remove the relevant Gemfile.lock
2014-11-19 14:54:31 -05:00
Josh Kalderimis
cf53131ed6
there is no rails-head Gemfile
2014-11-19 14:51:42 -05:00
Josh Kalderimis
04561542b1
Use the new build env on Travis
...
- use the new build env on Travis (sudo: false) (docs coming soon)
faster vms, more cpu, more ram, faster vm boot time
- remove the custom caching for now as the new setup has a far better network
- add rails-head to the gemfile list as it wasn't there
caching is generally not recommended for libs like Devise as you want to test against the latest gem versions. Caching will use the min requirements available on the system instead of retrieving the latest.
On that note, it is also recommended to remove the Gemfile.lock from the repo. For now I have just 'rm'd it before 'bundle install'
2014-11-19 13:49:55 -05:00
Tim Scott
4ba84eeb27
Option to validate upon #confirm!
...
Allow to ensure valid upon confirming.
We might want to consider confirmation status in validations. For example, maybe we want to require certain fields upon confirmation, but not at registration.
2014-11-19 12:29:08 -06:00
Lucas Mazza
c54e9863a6
Update Gemfiles.
2014-11-19 15:43:47 -02:00
Lucas Mazza
adc031b214
Update CHANGELOG [ci skip]
2014-11-19 14:26:44 -02:00
José Valim
a76dfd6552
Merge pull request #3319 from lleger/lleger-fix-password-length
...
Update password length validation to 72 characters max
2014-11-19 10:25:27 +01:00
José Valim
0efd9244bf
Merge pull request #3320 from deivid-rodriguez/yield_the_resource_in_registrations_controller_new_action
...
Yield the resource in RegistrationsController#new
2014-11-19 10:24:44 +01:00
David Rodríguez
1bbcc54026
Yield the resource in RegistrationsController#new
2014-11-19 09:32:51 +01:00
Logan Leger
c7cc91cb65
Update password length validation to 72 characters max
...
BCrypt has a limit of 72 characters for the password. Anything beyond 72
characters is truncated. This commit updates the validation to limit
passwords to less than 72 characters, keeping within the limitation.
2014-11-18 23:10:01 -06:00
José Valim
e54326c19c
Merge pull request #3314 from djpowers/update_omniauth_casing
...
Update casing of 'OmniAuth' to match that of official OmniAuth documentation
2014-11-14 20:56:30 +01:00
Dave Powers
63ae9701b4
Update casing of 'OmniAuth' to match that of official OmniAuth documentation
2014-11-14 14:45:09 -05:00
Carlos Antonio da Silva
c47ab5e6cf
Merge pull request #3310 from djpowers/patch-1
...
Fix link to Michael Hartl's Rails Tutorial
2014-11-14 08:18:04 -02:00
Dave Powers
9e083c9689
Fix link to Michael Hartl's Rails Tutorial
...
Update link to go to authentication chapter of latest edition (3rd) of online book
2014-11-13 23:08:42 -05:00
Lucas Mazza
12b5439f84
Merge pull request #3308 from mtarnovan/master
...
Yield the resource in SessionsController#new
2014-11-12 11:23:07 -02:00
José Valim
c7a135d6ba
Merge pull request #3303 from BM5k/callbacks
...
add Rememerable#after_remembered callback
2014-11-09 10:01:26 -02:00
BM5k
8c3c6ac10f
add docs to other callbacks
2014-11-08 16:51:08 -07:00
BM5k
b5713a8ddf
add Rememerable#after_remembered callback
2014-11-08 16:39:24 -07:00
BM5k
6f88df3453
add test for after_database_authentication
2014-11-08 16:00:07 -07:00
José Valim
910868785c
Merge pull request #3295 from jbourassa/stored_location_fragment
...
Include URI's fragment in `store_location_for`
2014-11-05 20:06:28 -02:00
José Valim
13e1a8fd8c
Merge pull request #3296 from adelevie/fix_comment_typo
...
Fix small typo in devise_authenticatable.rb
2014-11-05 20:06:04 -02:00
Jimmy Bourassa
5dedd8c4cf
Add fragment support for store_location_for
2014-11-05 16:52:40 -05:00
Alan deLevie
09f433691a
Fix small typo in devise_authenticatable.rb
2014-11-05 16:51:29 -05:00
Mihai Târnovan
3902e0702c
Yield the resource in SessionsController#new
2014-11-05 15:47:10 +02:00