Add the simple-rss Gem to your Gemfile:
gem 'simple-rss'
Update your bundle:
bundle
| // Client-side parser for .npy files | |
| // See the specification: http://docs.scipy.org/doc/numpy-dev/neps/npy-format.html | |
| var NumpyLoader = (function () { | |
| function asciiDecode(buf) { | |
| return String.fromCharCode.apply(null, new Uint8Array(buf)); | |
| } | |
| function readUint16LE(buffer) { | |
| var view = new DataView(buffer); | |
| var val = view.getUint8(0); |