Skip to content

Instantly share code, notes, and snippets.

@igaiga
Created October 30, 2012 08:25
Show Gist options
  • Save igaiga/3978967 to your computer and use it in GitHub Desktop.
Save igaiga/3978967 to your computer and use it in GitHub Desktop.
StandardErrorのサブクラス全表示
# 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