🖥
Ruby | pry でファイルに書いたクラスを読み込んでテストする
手順
適当に ruby ファイルを作る
/tmp/example.rb
class Example
def self.yes
puts 'YES!'
end
end
pry を立ち上げて先程の require する
$ pry
[1] pry(main)> require '/tmp/example'
=> true
メソッドを実行する
[2] pry(main)> Example.yes
YES!
環境
- Pry version 0.10.4 on Ruby 2.3.1
チャットメンバー募集
何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。
公開日時
2016-11-04
Discussion