Hi,
I'm really interested in this plugin. I've begun to study Ruby to do little things. One of them is to create matrices.
To do this, it's necessary to include the Matrix class:
http://www.ruby-doc.org/stdlib/libdoc/m ... atrix.html
- Code: Select all
require 'matrix'
The console returns : No such file to load -- matrix
So I try to put, in the same location the pub is, the libraries matrix.rb and e2mmap.rb. Now when I call to
require 'matrix' the result is:
- Code: Select all
Ruby> require 'matrix'
Return> True
The same result in the
FXRI - Instant Ruby Enlightenment tool.
- Code: Select all
irb(main):001:0> require 'matrix'
=> true
The problem comes when I want to create a new matrix, i.e.: Matrix[[1,2],[3,4]]
The 'FXRI' tool returns:
- Code: Select all
irb(main):002:0> Matrix[[1,2],[3,4]]
=> Matrix[[1, 2], [3, 4]]
However, in Neobook the result is completly different:
- Code: Select all
Ruby> Matrix[[1,2],[3,4]]
Return> True
I think, it return the result of last successful command action.
I know the access violation is commented and when I create the matrix the access violation is thrown

Access violation at address 1000A8B1 in module 'msvcrt-ruby18.dll'. Read of address 00000040
Maybe other files are needed (libraries, bin,...) to run correctly any command on hpwRuby?
Finally, I must say thanks for this plugin!!
Saludos