diff --git a/lib/generators/active_record/devise_generator.rb b/lib/generators/active_record/devise_generator.rb index 1d72311a..ec19d8bd 100644 --- a/lib/generators/active_record/devise_generator.rb +++ b/lib/generators/active_record/devise_generator.rb @@ -62,7 +62,7 @@ CONTENT # t.string :unlock_token # Only if unlock strategy is :email or :both # t.datetime :locked_at - # Token authenticatable + ## Token authenticatable # t.string :authentication_token RUBY end diff --git a/test/rails_app/app/mongoid/user.rb b/test/rails_app/app/mongoid/user.rb index d4051432..0d85190b 100644 --- a/test/rails_app/app/mongoid/user.rb +++ b/test/rails_app/app/mongoid/user.rb @@ -40,6 +40,6 @@ class User field :unlock_token, :type => String # Only if unlock strategy is :email or :both field :locked_at, :type => Time - # Token authenticatable + ## Token authenticatable field :authentication_token, :type => String end diff --git a/test/rails_app/db/migrate/20100401102949_create_tables.rb b/test/rails_app/db/migrate/20100401102949_create_tables.rb index c393fcad..c435b15f 100644 --- a/test/rails_app/db/migrate/20100401102949_create_tables.rb +++ b/test/rails_app/db/migrate/20100401102949_create_tables.rb @@ -36,7 +36,7 @@ class CreateTables < ActiveRecord::Migration t.string :unlock_token # Only if unlock strategy is :email or :both t.datetime :locked_at - # Token authenticatable + ## Token authenticatable t.string :authentication_token t.timestamps