Jean Luis Urena
Jean Luis Urena
The bmb enum is undefined seems like
> > I think it is safe to say specifying in the .tool-versions file is not viable. Plugins are global and that is by design. > > Yeah definitely -...
Same here. Were you able to resolve this?
> @mejiaej https://www.rubydoc.info/github/bblimke/webmock/WebMock#globally_stub_request-class_method Thanks! Not the ideal scenario (I don't want to stub on every example) but this is what works so far. ```ruby RSpec.configure do |config| config.before :each do...
The same issue occurs when stubbing across different contexts ('describe'). ``` javascript describe('first', () => { let myMock; before(() => { myMock = sinon.stub(Bar, 'greet'); myMock.withArgs('Hello').returns("Earth!"); }); after(() => myMock.restore());...
You can use [host-disk-mount-mode](https://docker-sync.readthedocs.io/en/latest/getting-started/configuration.html#host-disk-mount-mode) or `rsync` sync strategy
I have a PR using Android 26, removed all java.util.Calendar usage and replaced with java.time. Please take a look Some work still needs to be done, but for my purposes...
@AndroidDeveloperLB yep, and no I wasn't aware. I just saw this issue earlier today :\ And yes I understand that. The app I'm working on however will only work with...
Getting this same error in 5.1. Same usage as example, I think I know where to fix. I can make a PR this weekend with a fix. It happens onSizeChanged...
> FWIW, this is fixed in latest Uglifier 4.2.0 Gem: > > * https://github.com/lautis/uglifier/blob/77226d194e6eae5e82df53452c92a7b3727d28b9/lib/uglifier.rb#L228-L235 > * https://github.com/lautis/uglifier/blob/77226d194e6eae5e82df53452c92a7b3727d28b9/lib/uglifier.rb#L283-L288 4.2.0 did not fix the issue.