Today we are celebrating Devise‘s birthday. But wait, if you have started watching Devise since the beginning you may be asking: has Devise already completed one year of life? Nope. Today we are completing exactly 4 months since Devise was released at Rails Summit Latin America 2009. And we are very proud and glad to say that we have just reached version 1.0! Yeah! Let’s celebrate and talk a bit about history.
The beginning
We decided to build Devise based on some requirements we had in a project last year. The majority of our projects usually require an admin interface to configure the application with some CRUD information. And in this specific project, we were needing two different roles in the same application, the admin itself with all its powers to manage the application, and the end users that should be signed in to do some stuff inside the application. Usually only one model would be required in this situation, with some “type” column or flag to determine if the user is an admin or not, right? Okay, but we didn’t like this approach that much. So we started looking at some of the possibilities:
- Authlogic: a really great piece of code and functionality, but a bit messy by handling the session in a model. It also only handles the model part.
- Clearance: full stack, Rails Engine, extra modules, everything we needed. However, packaged with a User model and without the ability to customize it.
Okay, we could pick one of these and with a bit of extra work we would achieve our requirements. But would we need to do it every time this situation happens? We said no. It’s not DRY enough. And we like DRY. So Devise was born.
The main objective of the first Devise version was to get up and running the entire sign in process, including password recovery and confirmation stuff. And everything should work with different roles, which mean you could easily plug and play an Admin, User, Account, or whichever role you needed, in your application, without much effort. And we had a deadline: Rails Summit. It took almost 1 month of work before Rails Summit. I still remember the days before the event, we putting a lot of effort to have Devise up and running, and the README being written during the event. So, we were ready there and presenting Devise to the world.
How it works
Devise was born with the intuit of handling different roles without effort, automatically, and it is achieved with Rails Engines. In addition, Devise is build in top of Warden, a great rack authentication framework. It allowed us to be flexible enough and add different strategies, hooks, and modules easily. In short, Devise:
- Is Rack based;
- Is a complete MVC solution based on Rails Engines;
- Allows you to have multiple roles (or models/scopes) signed in at the same time;
- Is based on a modularity concept: use just what you really need.
The road so far
Devise has started with the basic modules needed for that specific application:
- Authenticatable: responsible for signing users in through a basic login form, handling password validation and authentication.
- Confirmable: manages confirming users account.
- Recoverable: handles password recovery.
- Validatable: basic email and password validation.
Okay, everything we needed were there. Everything else was in a wish list, nicely called TODO. And we decided from the beginning to not add features to Devise until us or somebody else really needed them. But people asked, people needed new features. And they were always there to help, to fork and fix a bug, to comment. We started soon to add new features, the first was:
- Rememberable: handles signing users in automatically from cookies.
After people were asking for easier ways to create their migrations, so we introduced a new module with Devise 0.2:
- Migratable: hooks into ActiveRecord migrations to add helper methods for creating Devise colums. So you can do stuff like
t.authenticatable,t.confirmableand so on.
To help people getting up and running faster, we created some generators. Now they are:
script/generate devise_install: create devise initializer file to enable some configs and copy default locale file.script/generate devise MyModel: create a model with setup for Devise, routes and migration.script/generate devise_views: copy all Devise views to your app/views folder, so you can change it as needed.
Devise 0.3 and 0.4 came soon after, with a lot of bug fixes in generators, I18n, initialization, some deprecations and a bunch of code refactored.
Contributions from community were coming more and more. The first big contribution came with the addition of encryptors. Nowadays Devise supports encrypting passwords with SHA1, SHA512, and BCrypt. It has also support for using the same encryptors as Authlogic, Clearance and Restful Authentication, to help you migrating from these solutions.
At this point we thought: okay, that should be enough. It wasn’t. People needed different ORMs, other than ActiveRecord. So we introduced support to MongoMapper and then we were reaching Devise 0.5.
We were receiving a lot of issues with functional tests, so we introduced some test helpers to help people with the sign in/out process in this kind of tests called Devise::TestHelper.
As applications grow, more roles may be needed. So we created the possibility to scope your views for each role/scope in your application. This way your user can have a different sign in view than the admin, for example. Reaching Devise 0.6, a lot of improvements on routes and DataMapper support were added.
We were full of nice ideas to add new features, and our TODO was bigger than we like. So we came up with:
- Timeoutable: verify each request to timeout the user session after a certain period of inactivity, asking for credentials again.
- Trackable: records how many times each user has signed in, last timestamps and ips.
Also the loading process and ORM support received a lot of work before launching Devise 0.7.
For Devise 0.8 we looked at tests for MongoMapper and the code got a great review. Also some work was done to get Devise up and running with latest version of Warden and its new features, such as serializers. We also extracted a new base module from Confirmable:
- Activatable: allow setting up extra activation methods for your models.
We were receiving a lot of feedback from the community, and then we merged a cool new feature:
- Lockable: lock accounts based on a number of invalid sign in attempts.
Following the same pattern from Rails in this commit we moved flash messages to :notice and :alert, and released Devise 0.9. Step by step the 1.0 version was coming.
What is new
Devise 1.0 introduces a lot of cool features. The community seems to be really appreciating Devise, and we’ve received another great contribution:
- Token Authenticatable: validates authenticity of a user while signing in using an authentication token (also known as “single access token”).
In addition, we created the two most requested features for Devise:
- Registerable: handles sign up users through a registration process, and also editing/updating user info and deleting user account.
- HTTP Authenticatable: http basic authentication.
We also added the possibility to use Migratable while editing a table using change_table, among other fixes.
What comes next
We are preparing a new release of Devise fully compatible with Rails 3. It means Devise has now closed its development for new features in Rails 2.x. We are still going to maintain a 1.0 branch in github for bug fixes to keep everything up and running.
In the end
We would like to say thank you to everyone who has helped us achieve 1.0 version and who is using Devise, testing, creating issues, and giving all this feedback.
Also, for those who were at Rails Summit last year, we proposed something: get the biggest number of watchers on github as fast as possible! When we presented Devise, there were 7 watchers, and if I am right we were 4 of them. At the time of this writing we have 762 watchers. Yeah! I think I can take the risk and say we accomplished it. Thanks!
Let’s celebrate Devise 1.0, and look forward to see Devise and Rails 3. Enjoy!
Happy birthday Devise!
Tags: authentication, devise, engine, plugins, rails
This entry was posted on Friday, February 12th, 2010 at 5:05 pm and is filed under English. You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.-
http://trevorturk.com Trevor Turk
-
http://trevorturk.com Trevor Turk
-
http://www.mhfs.com.br Marcelo Silveira
-
http://www.mhfs.com.br Marcelo Silveira
-
http://www.rizwanreza.com Rizwan Reza
-
http://www.rizwanreza.com Rizwan Reza
-
Dave Porter
-
Dave Porter
-
http://iain.nl iain
-
http://iain.nl iain
-
NonRailsUse
-
NonRailsUse
-
José Valim
-
Anrake
-
Anrake
-
Mihael Konjević
-
Mihael Konjević
-
Jazz
-
Jazz
-
http://carlosantoniodasilva.wordpress.com Carlos Antônio
-
http://carlosantoniodasilva.wordpress.com Carlos Antônio
-
http://carlosantoniodasilva.wordpress.com Carlos Antônio
-
Millisami
-
Millisami
-
José Valim
-
Off Topic
-
Off Topic
-
José Valim
-
http://danielkehoe.com/ Daniel Kehoe
-
http://danielkehoe.com/ Daniel Kehoe

All
English only
Em português apenas