2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

binding.pryでデバッグするとターミナルがpage breakする

Posted at

#下記のような現象
railsのデバッグ機能で調べたいところにbinding.pryを挿入してWEB上で実際に動かしターミナルで内容を調べようとすると情報が多いと制限される

ターミナル
hogehogehoge
--- Press enter to continue ( q to break ) ---

enterを押すと1行ずつ追加で内容が表示されるという
めんどくさいので以下のように解決

#解決法
railsプロジェクトのhomeディレクトリ直下に .pryrc ファイルを作り以下を記述

.pryrc
Pry.config.pager = false  #永続的にページングを無効にする

これで立ち上げ直してもう一度pryでデバッグすればpageが無効になる

#参考にさせてもらったURL
https://github.com/pry/pry/wiki/Customization-and-configuration#Config_pager

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?