syntax error, unexpected $end, expecting rASSOC

I added this to my db/seeds.rb:

user = User.create :email => 'another@example.com', "password => 'guessit' Category.create [{:name => 'Programming'},                 {:name => 'Event'},         {:name => 'Travel'},         {:name => 'Music'},         {:name => 'TV'}]

$ rake db:seed

returns:

rake aborted! db/seeds.rb:9: unterminated string meets end of file                       syntax error, unexpected $end, expecting rASSOC

Any help is much appreciated.

Bruce

I added this to my db/seeds.rb:

user = User.create :email => ‘another@example.com’, "password =>

‘guessit’

I think the line above the culprit. change "password to :password.