Я следовал за актером фильма Райаном Бейтсом, и все работает нормально, кроме случаев, когда я меняю свои методы, как показано ниже:
от
<code> def create
omniauth = request.env["omniauth.auth"]
current_user.authentications.create(:provider => omniauth['provider'], :uid => omniauth["uid"])
flash[:notice] = "Authentication successful"
rescue Exception => e
# Just spit out the error message and a backtrace.
render :text => "<html><body><pre>" + e.to_s + "
<час />
" + e.backtrace.join("\n") + "
"
конец
до
<code> def create
omniauth = request.env["omniauth.auth"]
current_user.authentications.create(omniauth['provider'], omniauth["uid"])
flash[:notice] = "Authentication successful"
rescue Exception => e
# Just spit out the error message and a backtrace.
render :text => "<html><body><pre>" + e.to_s + "
<час />
" + e.backtrace.join("\n") + "
"
конец
я продолжаю получать неопределенный метод stringify_keys' for "twitter":String
но все работает отлично с первого раза. любые идеи здесь