From f2ca374918f84c313ce578dfa6fe1c00e28b2d0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C3=ABl=20Blais=20Masson?= Date: Mon, 19 Jun 2017 13:28:29 -0400 Subject: [PATCH] Fix integers no longer being printed as blue by default Was missing from #293. --- README.md | 2 +- lib/awesome_print/inspector.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 63724f6..716c207 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ color: { class: :yellow, date: :greenish, falseclass: :red, - fixnum: :blue, + integer: :blue, float: :blue, hash: :pale, keyword: :cyan, diff --git a/lib/awesome_print/inspector.rb b/lib/awesome_print/inspector.rb index 2e10989..dbb8ca6 100644 --- a/lib/awesome_print/inspector.rb +++ b/lib/awesome_print/inspector.rb @@ -31,6 +31,7 @@ module AwesomePrint date: :greenish, falseclass: :red, fixnum: :blue, + integer: :blue, float: :blue, hash: :pale, keyword: :cyan,