envato / event_sourcery

A library for building event sourced applications in Ruby
MIT License
84 stars 10 forks source link

Replace Bignum usage with Integer #87

Closed orien closed 7 years ago

orien commented 7 years ago

Bignum is deprecated in Ruby 2.4. We can use Integer instead. Fixes the deprecation notice:

    lib/event_sourcery/event.rb:17: warning: constant ::Bignum is deprecated
envatopoho commented 7 years ago

👍