There are couple of problems faced after installing Daru on a new computer.
- It produces some
NameError.
NameError: uninitialized constant Daru::Accessors::ArrayWrapper::Forwardable
The above error goes away on installing reportbuilder gem
2.3.0 :002 > dv = Daru::Vector.new [1, 2, 3]
=> #<Daru::Vector(3)>
0 1
1 2
2 3
2.3.0 :003 > dv.to_s
NameError: uninitialized constant Daru::Vector::ERB
This one is the cause of build failure in Statsample here.
It goes away after one do require 'erb'.
The issue can be reproduced doing the following:
- rvm remove 2.3.0
- rvm install 2.3.0
- gem install daru
- require 'daru'
Here are all error messages in detail.
Can we include a test in Travis CI to check for such things in future?
There are couple of problems faced after installing Daru on a new computer.
NameError.The above error goes away on installing
reportbuildergemThis one is the cause of build failure in Statsample here.
It goes away after one do
require 'erb'.The issue can be reproduced doing the following:
Here are all error messages in detail.
Can we include a test in Travis CI to check for such things in future?