mrichman (owner)

Revisions

gist: 228846 Download_button fork
public
Public Clone URL: git://gist.github.com/228846.git
Embed All Files: show embed
Text only #
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
$ rake db:seed --trace
(in /Users/mark/Sites/rails/rails_sample_app)
** Invoke db:seed (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute db:seed
Loaded suite /usr/bin/rake
Started
 
 
Finished in 5.6e-05 seconds.
 
0 tests, 0 assertions, 0 failures, 0 errors, 0 pendings, 0 omissions, 0 notifications
0% passed
 
User.create(
  :login => 'admin',
  :first_name => 'Test',
  :last_name => 'User',
  :email => 'testuser@example.com',
  :address1 => '123 Main St.',
  :city => 'Anytown',
  :state => 'XY',
  :postal_code => '12345',
  :country_code => 'US',
  :password => 'admin'
)