Elia Schito
Elia Schito
@youchan absolutely agree, that has been delayed to give priority to Opal 0.11 compatibility but it's something that should be done 👍
Thanks for pointing that out @hmdne, closing 👍
@tvdeyen thanks for the review, I've followed your suggestions! @spaghetticode I've updated the code, it now has two additional routes that will load seeds and samples: `localhost:3000/solidus/seed` and ~`localhost:3000/solidus/load_samples`~ `localhost:3000/solidus/samples`,...
@kennyadsl @tvdeyen you think this could still be helpful? The sandbox improved a lot since 2019, it's easy to regenerate, and conveniently responds to `bin/rails` commands, but there might still...
@tvdeyen yeah, I think a bunch of things from this actually ended up in the sandbox, I just wanted to be sure I was not gonna close this if it...
@peterberkenbosch I think this should probably be reissued on https://github.com/solidusio/solidus_starter_frontend, feel free to just close it or turn it into an issue on SSF, leaving it open so you handle...
This sounds great and very efficient, but not quite around the corner… 😊 Would you accept a PR that will always check against expanded paths meanwhile? That should solve a...
Current implementation: ``` rb def DelegateClass(superklass) SimpleDelegator end ``` MRI 2.2 source: ``` rb def DelegateClass(superclass) klass = Class.new(Delegator) methods = superclass.instance_methods methods -= ::Delegator.public_api methods -= [:to_s,:inspect,:=~,:!~,:===] klass.module_eval do...
I tried compiling json_pure as an alternative, but they rely on a bunch of multiline regexps that we can't compile properly now :\
Yes, seems a problem with `require_remote` and it should be fixed. That said, `require_remote` is not meant to be used too seriously (being based on _sync_ XHR calls) and my...