LoginSignup
2
0

More than 5 years have passed since last update.

Rubyの継承関係の確認

Last updated at Posted at 2018-07-27

Rubyで継承関係がわからなくなったら

Class.ancestors

で継承関係がみれます。

app/controllers/hogeController.rb
class HogeController < ApplicationController

end
[1] pry(main)> HogeController.ancestors
=> [HogeController,
 #<Module:0x007fe7da52bec0>,
 ApplicationController,
以下略
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