Ruby ローカル変数の一覧を表示する

Rubyにて現在のスコープで定義されているローカル変数名の一覧を表示するには、local_variablesを使います。

使用例

message = "hello world!"
p local_variables
=> [:message, :_]