Created
October 30, 2012 08:25
-
-
Save igaiga/3978967 to your computer and use it in GitHub Desktop.
StandardErrorのサブクラス全表示
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# thanks kwappa-san! | |
puts Object.constants.find_all { |c| | |
(cc = Object.const_get(c)) && # シンボルからクラス定数を取得 | |
cc.respond_to?(:ancestors) && # ancestorsメソッドを持つ | |
cc.ancestors.include?(StandardError) # StandardErrorとそのサブクラス | |
}.sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment