lib/gloo/expr/op_mult.rb in gloo-0.4.0 vs lib/gloo/expr/op_mult.rb in gloo-0.5.0
- old
+ new
@@ -9,9 +9,11 @@
class OpMult < Gloo::Core::Op
# Perform the operation and return the result.
def perform( left, right )
return left * right.to_i if left.is_a? Integer
+
+ return left * right.to_f if left.is_a? Numeric
end
end
end
end