gaizka / tog_user forked from tog/tog_user

Tog Platform User Component

This URL has Read+Write access

gaizka (author)
Tue Jun 16 13:59:04 -0700 2009
commit  2e3e31dd6ac8b61decf259ed91e017743cd67c0a
tree    0f22562cb1e4fcd4bb0acc2846f584c2661cad12
parent  30a51b25d67bff370cb76284125a4a64f7dc2253
name age message
file .gitignore Mon Feb 23 12:34:46 -0800 2009 better message after registration, explaining a... [molpe]
file CHANGELOG.md Loading commit data...
file MIT-LICENSE Tue Aug 26 08:11:01 -0700 2008 license updated [molpe]
file README.markdown Thu Oct 16 13:21:18 -0700 2008 readme fixed, thanks TeuF [aitor]
file Rakefile Wed Jan 28 09:17:56 -0800 2009 Fixed a nasty bug on password reminder mailer i... [aitor]
directory app/
directory config/
directory db/ Thu Aug 21 04:20:52 -0700 2008 first commit [aitor]
file init.rb
directory lib/
directory locale/
directory shoulda_macros/ Tue Nov 11 08:30:50 -0800 2008 Login macho camacho fixe dtypo [aitor]
directory test/
README.markdown

Tog User

Tog user management

Included functionality

  • Login, logout and signup processes
  • Password reminder
  • Activation process
  • recaptcha support
  • User login or email as key
  • Administration interface

Resources

Plugin requirements

  • https://github.com/tog/tog/wikis/3rd-party-plugins-acts_as_state_machine

Install

If you used the command togify to install tog, then you already have tog_user installed.

If not, install it like any other plugin:

  • Install plugin form source:
ruby script/plugin install git@github.com:tog/tog_user.git
  • Generate installation migration:
ruby script/generate migration install_tog_user
  with the following content:
class InstallTogUser < ActiveRecord::Migration
  def self.up
    migrate_plugin "tog_user", 1
  end

  def self.down
    migrate_plugin "tog_user", 0
  end
end
  • Add tog_social's routes to your application's config/routes.rb
map.routes_from_plugin 'tog_user'
  • And finally...
 
rake db:migrate

More

http://github.com/tog/tog_social

http://github.com/tog/tog_social/wikis

Copyright (c) 2008 Keras Software Development, released under the MIT license