Mehul Kar

Results 169 comments of Mehul Kar

@simonihmig this is mostly not happening anymore as far as a I can see. Good to close? I still see `version.json` 404'ing, but I'm guessing that's a separate issue

@jenweber @locks I think this can be closed. `npm run test:node` checks for broken links using guidemaker, from what I can tell

The only related issue I see is this https://github.com/jstorimer/delayed_paperclip/issues/34

My current solution is to monkey patch paperclip's `Attachment#assign` method, but this makes me really uneasy ``` ruby module Paperclip class Attachment alias_method :old_assign, :assign def assign(uploaded_file) mark_processing(false) old_assign(uploaded_file) mark_processing(true)...

Rails 4.0.4, Paperclip: 4.2.1, delayed_paperclip 2.8.0 ``` $ rails --version Rails 4.0.4 $ gem list paperclip *** LOCAL GEMS *** delayed_paperclip (2.8.0) paperclip (4.2.1, 4.2.0) $ cat Gemfile.lock| grep paperclip...

A coworker had added a `data_processing` column before I got on the project, but it didn't seem to be doing anything, so I was forced to roll my own. I...

Maybe the same as https://github.com/ember-learn/cli-guides/issues/188

Yeah I saw that @simonihmig had gotten it running in ember-bootstrap as well: https://github.com/kaliber5/ember-bootstrap/pull/930. > I think the main blocker here is providing a shim layer that addon authors can...

Odd note, when I do: ```ts import fs from 'node:fs' import * as blah from './blah'; test('my test', (t) => { // this works t.mock.method(fs, 'writeFileSync', () => /* */);...