You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get `NoMethodError` when doing a diff against a float constant because of how `ObjectSpace.dump(object)` treats floats.
```
# here is the problematic line in helpers.rb
address = JSON.parse(ObjectSpace.dump(object))["address"]
ObjectSpace.dump(1.0)
=> "1.00000"
```
This fixes that.
0 commit comments