Edward Poot

Results 87 comments of Edward Poot

As a workaround you can do something like this: ``` class NewRegistrationProcessor def perform NewRegistrationProcessorJob.perform_now end end Crono.perform(NewRegistrationProcessor).every 1.minute ``` But I agree it would be better if perform_now is...

Same issue here. Would be great if it can be fixed.

Hi @Codeido thanks for this nice alert controller! Wondering if you ever got around the merging in a fix for this?

I noticed this too in Xcode 6 and I've fixed it in my fork and created a pull request. See https://github.com/davedelong/CHCSVParser/pull/68

I hope so too, but the warnings are pretty harmless but nonetheless annoying.

I am no longer seeing warnings in Xcode 6, so I guess this issue can be closed @davedelong.

You are right; my dependency manager still used my own fixed branch. It seems @davedelong has implemented a fix, however CocoaPods.spec is still set to the tag 2.1.0 of July...

As a workaround you could temporarily use this in your Podfile: pod 'CHCSVParser', :git => 'https://github.com/davedelong/CHCSVParser.git' This just uses the master branch instead of tags

@samratjp No eventually I stopped using IdentityCache. Not necessarily because of this issue, but because I found this way of caching to unelegant/introducing technical debt. According to my Gemfile.lock I...

Thanks, noticed this issue recently while using such params in the past did actually work. Edit: doesn't work in my case, I still get 'Unpermitted parameter'. But my issue more...