[PATCH] Replace deprecated BigDecimal.new() calls with BigDecimal() After upgrading to ruby 2.6.1, our application started logging this warning: ``` ``` which was being emitted from roxml-4.0.0/lib/roxml/definition.rb:179
So, in this commit I've replaced the deprecated `BigDecimal.new` invocations with invoking the `BigDecimal` method as recommended.