Skip to content

Instantly share code, notes, and snippets.

@mrichman
Created November 7, 2009 19:16
Show Gist options
  • Select an option

  • Save mrichman/228846 to your computer and use it in GitHub Desktop.

Select an option

Save mrichman/228846 to your computer and use it in GitHub Desktop.
$ 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 => '[email protected]',
:address1 => '123 Main St.',
:city => 'Anytown',
:state => 'XY',
:postal_code => '12345',
:country_code => 'US',
:password => 'admin'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment