TwP / logging

A flexible logging library for use in Ruby programs based on the design of Java's log4j library.
https://rubygems.org/gems/logging
MIT License
530 stars 101 forks source link

Replace `Fixnum` with `Integer` #161

Closed TwP closed 7 years ago

TwP commented 7 years ago

Ruby 2.4.0 has unified the Fixnum and Bignum classes into a single Integer class. As such, the older classes have been deprecated. This PR removes our usage of Fixnum and replaces it with Integer. This change is backwards compatible with all our supported Ruby versions and with JRuby.

Thank you for the heads up @leonardteo :bowing_man:

fixes #159