cognitect / transit-ruby

Apache License 2.0
113 stars 24 forks source link

Deprecation warnings due to usage of BigDecimal.new #25

Closed gouvermxt closed 5 years ago

gouvermxt commented 5 years ago

With Ruby 2.6.2 and transit-ruby 0.8.602, I get deprecation warnings from Transit about the usage of BigDecimal.new, which is deprecated in Ruby 2.6+. BigDecimal() should be used instead.

/ruby/2.6.0/gems/transit-ruby-0.8.602/lib/transit/read_handlers.rb:43: warning: BigDecimal.new is deprecated; use BigDecimal() method instead.

% ruby --version ruby 2.6.2p47 (2019-03-13 revision 67232) [x86_64-linux-gnu]