-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
26 lines (18 loc) · 744 Bytes
/
README
File metadata and controls
26 lines (18 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
UserSystem
A framework for user interactions. There is a User model that handles
all the knowledge about a user (login, email, verification status, etc)
and a Session model that is stored in the session to associate a user
with access to the site.
Authentication is layered on top by other plugins. See
user_system_local_credentials for an example.
== Setup
rake user_system:migrate
== Requires
view_extender: http://github.com/xtoddx/view_extender/tree/master
== Testing
Be sure you add the required gems to config/environments/test.rb
config.gem "thoughtbot-factory_girl",
:lib => "factory_girl",
:source => "http://gems.github.com"
config.gem 'mocha'
config.gem 'test_spec', :lib => 'test/spec'