namespace :db do desc "Creates the first user for the authentication system" task :create_default_user => :environment do User.create(:email => "ianalexanderwood@gmail.com", :password => "password") end end