The message for deprecated symbol of UIColor seems like the opposite.
katsuyoshi opened this issue · 4 comments
katsuyoshi commented
I used :light_gray.uicolor
. It shows deprecated message.
This behavior seems like the opposite.
(main)> :light_gray.uicolor
2013-08-24 00:13:10.679 irBoard[15832:1803] The symbol :lightgray has been deprecated in favor of :light_gray
2013-08-24 00:13:10.680 irBoard[15832:1803] The symbol :lightgray has been deprecated in favor of :light_gray
=> UIColor.lightGrayColor
(main)> :lightgray.uicolor
=> :lightgray.uicolor
colinta commented
Oops O_O! I'll fix that now. Thanks, Katsuyoshi. Ooki ni!
colinta commented
Ahh, it's in the to_s
method.
colinta commented
fixed in 1.1.0. thanks again!
katsuyoshi commented
Thanks