gaizka / tog_user forked from tog/tog_user
- Source
- Commits
- Network (13)
- Downloads (6)
- Wiki (1)
- Graphs
-
Branch:
master
commit 2e3e31dd6ac8b61decf259ed91e017743cd67c0a
tree 0f22562cb1e4fcd4bb0acc2846f584c2661cad12
parent 30a51b25d67bff370cb76284125a4a64f7dc2253
tree 0f22562cb1e4fcd4bb0acc2846f584c2661cad12
parent 30a51b25d67bff370cb76284125a4a64f7dc2253
tog_user /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Feb 23 12:34:46 -0800 2009 | |
| |
CHANGELOG.md | ||
| |
MIT-LICENSE | Tue Aug 26 08:11:01 -0700 2008 | |
| |
README.markdown | Thu Oct 16 13:21:18 -0700 2008 | |
| |
Rakefile | Wed Jan 28 09:17:56 -0800 2009 | |
| |
app/ | ||
| |
config/ | ||
| |
db/ | Thu Aug 21 04:20:52 -0700 2008 | |
| |
init.rb | ||
| |
lib/ | ||
| |
locale/ | ||
| |
shoulda_macros/ | Tue Nov 11 08:30:50 -0800 2008 | |
| |
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

