最近、作業中のサンプルRailsアプリケーションをMacBookに複製し、rake db:migrateを実行しようとしていますが、次のエラーが発生します。
rake aborted!
/Users/anderskitson/Sites/sample_app/db/migrate/20130207032207_add_password_digest_to_users.rb:5: syntax error, unexpected keyword_end, expecting $end
これがrbファイルです
raclass AddPasswordDigestToUsers < ActiveRecord::Migration
def change
add_column :users, :password_digest, :string
end
end