public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Search Repo:
Michael Hartl (author)
Mon May 12 12:02:06 -0700 2008
commit  048c1c82ce760761b301cd01a709602dca96a9c8
tree    7a964ef44c67b6d4135512309871929d36fb9f6c
parent  1efbdbdc65dae14a8038d01813136225903cf0ae
insoshi / spec / fixtures / people.yml
100644 52 lines (48 sloc) 1.406 kb
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Amazingly, the call to 'inspect' makes the db insertion work.
<% password = Person.encrypt('test').inspect %>
 
quentin:
  email: quentin@example.com
  name: Quentin
  description: I'm Quentin
  crypted_password: <%= password %>
  created_at: <%= 5.days.ago.to_s :db %>
  last_logged_in_at: <%= 1.day.ago.to_s :db %>
  deactivated: false
  connection_notifications: true
  message_notifications: true
  wall_comment_notifications: true
  blog_comment_notifications: true
 
aaron:
  email: aaron@example.com
  name: Aaron
  description: I'm Aaron
  crypted_password: <%= password %>
  created_at: <%= 1.day.ago.to_s :db %>
  deactivated: false
  connection_notifications: true
  message_notifications: true
  wall_comment_notifications: true
  blog_comment_notifications: true
 
kelly:
  email: kelly@example.com
  name: Kelly
  description: I'm Kelly
  crypted_password: <%= password %>
  created_at: <%= 1.day.ago.to_s :db %>
  deactivated: false
  connection_notifications: true
  message_notifications: true
  wall_comment_notifications: true
  blog_comment_notifications: true
  
admin:
  email: admin@example.com
  name: admin
  description: I'm the admin!
  admin: true
  crypted_password: <%= password %>
  created_at: <%= 5.days.ago.to_s :db %>
  deactivated: false
  connection_notifications: true
  message_notifications: true
  wall_comment_notifications: true
  blog_comment_notifications: true