web-dev-qa-db-ja.com

Pry-railsを使用して次の評価から逃れることはできません

こんにちは私はいくつかの素晴らしいデバッグを行うためにPryをインストールし、以前はそれを機能させていましたが、「next」でコードにステップインすると、次のエラーが発生します:

SyntaxError: (eval):2: Can't escape from eval with next

使用されているコード:

def create
    binding.pry
    build_resource(sign_up_params)

    if resource.save
      yield resource if block_given?
      if resource.active_for_authentication?
        set_flash_message :notice, :signed_up if is_flashing_format?
        sign_up(resource_name, resource)
        respond_with resource, :location => after_sign_up_path_for(resource)
      else
        set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}" if is_flashing_format?
        expire_data_after_sign_in!
        respond_with resource, :location => after_inactive_sign_up_path_for(resource)
      end
    else
      clean_up_passwords resource
      respond_with resource
    end
  end

他の誰かがこの問題を抱えていましたか?

必ず「pry-nav」gemをインストールしてください。

ナビゲーションコマンドが「pry-Rails」gemに含まれていると仮定したため、同じエラーが発生しました。

Gemfileにgem 'pry-nav'を追加してから、bundle installを実行します。

49
Aurelien Porte

pry-byebug gem(for Ruby> = 2.0)または pry-debugger gem(for Ruby <= 1.9)。

Gemfileでprygemと一緒に使用します。

# Gemfile
gem 'pry'
gem 'pry-byebug'
11
exmaxx