Elia Schito
Elia Schito
Delayed to when we'll have a more general solution, meanwhile the patch in this PR can be used to make tests pass locally.
I think the best approach here would be to warn about possible errors and compile those two (and related) to `^$`, at lead while we're still using native js regexps
> why this isn't in 0.10.3? That's because we backport to the current stable just the minimum, otherwise it would become much less… _stable_. That said,`\Z` should problably map to...
Thanks for reporting, can you specify the version in which you observed this? On Mon, 5 Dec 2016 at 07:32, patrick kettner wrote: > require 'opal' > def foo >...
Ok, confirmed on master too
Hi @lyudmil! Here are the basic steps for contributing: - fork and clone the repo (use `--recursive` to get the submodules too) - add the relevant spec to the [`ruby_spec`...
@lyudmil or keep it in a separate file (aptly named) and require it from `stdlib/digest.rb`, e.g. it could be put in `stdlib/digest/jshashes-v1.2.3.js`
err… forgot to mention that in that case you also should put it in an opal module, to make the require work correctly at runtime: ```js Opal.modules['digest/jshashes-v1.2.3'] = function(Opal){ //...
This piece of code should do the trick for rails ```rb request.send(:parameter_filter).filter(request.parameters) ```