エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
Pryではクラス、モジュール、メソッドの定義をみることができる。 使うコマンドはshow-source(show-met... Pryではクラス、モジュール、メソッドの定義をみることができる。 使うコマンドはshow-source(show-methodや$も使うことができる)。 ドキュメントはこちら。 サンプル用のコードpry_show_source.rbを作成 def hello_world p 'hello_world' end class MyClass class << self def hello_world p 'hello_world in MyClass class' end def goodbye p 'goodbye in MyClass class' end end def hello_world p 'hello_world in MyClass instance' end end require 'pry' binding.pry