From 6669c966d2744f21315047d1725ad4494d15b8ba Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Fri, 26 Apr 2019 18:42:50 +0900 Subject: Class instance should be also colorable on IRB inspect. Change is made with: `$ make -C .ruby sync-default-gems GEM=irb` --- lib/irb/color.rb | 2 +- test/irb/test_color.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/irb/color.rb b/lib/irb/color.rb index 2e7a3e8bab..29d414eccc 100644 --- a/lib/irb/color.rb +++ b/lib/irb/color.rb @@ -51,7 +51,7 @@ module IRB # :nodoc: obj.all? { |k, v| inspect_colorable?(k) && inspect_colorable?(v) } when Array obj.all? { |o| inspect_colorable?(o) } - when String, Symbol, Regexp, Integer, Float, FalseClass, TrueClass, NilClass + when String, Symbol, Regexp, Integer, Float, FalseClass, TrueClass, NilClass, Class true else false diff --git a/test/irb/test_color.rb b/test/irb/test_color.rb index 8439fd54f5..61911cf1f1 100644 --- a/test/irb/test_color.rb +++ b/test/irb/test_color.rb @@ -53,6 +53,7 @@ module TestIRB ['foo', :bar] => true, { a: 4 } => true, /reg/ => true, + Struct => true, Object.new => false, Struct.new(:a) => false, Struct.new(:a).new(1) => false, -- cgit v1.2.3