mirror of
https://github.com/heartcombo/devise.git
synced 2022-11-09 12:18:31 -05:00
Release 3.0.0.rc with Rails 4 support
This commit is contained in:
parent
270e2ece19
commit
39c1a2c7d0
5 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
== master
|
== 3.0.0.rc
|
||||||
|
|
||||||
* enhancements
|
* enhancements
|
||||||
* Rails 4 and Strong Parameters compatibility. (@carlosantoniodasilva, @josevalim, @latortuga, @lucasmazza, @nashby, @rafaelfranca, @spastorino)
|
* Rails 4 and Strong Parameters compatibility. (@carlosantoniodasilva, @josevalim, @latortuga, @lucasmazza, @nashby, @rafaelfranca, @spastorino)
|
||||||
|
|
|
@ -12,7 +12,7 @@ GIT
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
devise (2.2.4)
|
devise (3.0.0.rc)
|
||||||
bcrypt-ruby (~> 3.0)
|
bcrypt-ruby (~> 3.0)
|
||||||
orm_adapter (~> 0.1)
|
orm_adapter (~> 0.1)
|
||||||
railties (>= 3.2.6, < 5)
|
railties (>= 3.2.6, < 5)
|
||||||
|
|
|
@ -57,7 +57,7 @@ You can view the Devise documentation in RDoc format here:
|
||||||
|
|
||||||
http://rubydoc.info/github/plataformatec/devise/master/frames
|
http://rubydoc.info/github/plataformatec/devise/master/frames
|
||||||
|
|
||||||
If you need to use Devise with Rails 2.3, you can always run "gem server" from the command line after you install the gem to access the old documentation.
|
If you need to use Devise with previous versions of Rails, you can always run "gem server" from the command line after you install the gem to access the old documentation.
|
||||||
|
|
||||||
### Example applications
|
### Example applications
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ Once you have solidified your understanding of Rails and authentication mechanis
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
Devise 2.0 works with Rails 3.1 onwards. You can add it to your Gemfile with:
|
Devise 3.0 works with Rails 3.2 onwards. You can add it to your Gemfile with:
|
||||||
|
|
||||||
```ruby
|
```ruby
|
||||||
gem 'devise'
|
gem 'devise'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: ..
|
remote: ..
|
||||||
specs:
|
specs:
|
||||||
devise (2.2.4)
|
devise (3.0.0.rc)
|
||||||
bcrypt-ruby (~> 3.0)
|
bcrypt-ruby (~> 3.0)
|
||||||
orm_adapter (~> 0.1)
|
orm_adapter (~> 0.1)
|
||||||
railties (>= 3.2.6, < 5)
|
railties (>= 3.2.6, < 5)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Devise
|
module Devise
|
||||||
VERSION = "2.2.4".freeze
|
VERSION = "3.0.0.rc".freeze
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue