Maciek Rząsa

Results 6 comments of Maciek Rząsa

Could you share your `Vagrantfile`, it seems that `box.provider` is not set correctly.

Vagrant is not installed on your machine apparently, follow the steps described in https://www.vagrantup.com/docs/installation

Note that the host folder is not created by default, you need to add `create: true` option (which is `false` by default): ```diff - base.vm.synced_folder "./provision", "/vagrant" + base.vm.synced_folder "./provision",...

I think it's not about the number at the end. It seems that a suggestion is not provided if you try to correct a correct word (i.e. one that is...

1. It happens only when precision is 0 (defailt), it works well when we define a non-zero precision: ```ruby > BigDecimal.mode(BigDecimal::EXCEPTION_INFINITY, false); BigDecimal::INFINITY.round(1) # => Infinity ``` 2. With precision=0,...

Could you give a small example of the text that causes this error? Ideally one line, a few words. This will make it much easier to reproduce on dev machines...