Tim Diggins

Results 78 comments of Tim Diggins
trafficstars

I've had this problem and for me the problem was I was using Bundler v1 which doesn't provide `Bundler.with_unbundled_env` which Spring 4 uses. Upgrading to Bundler v2 for this project...

@technicalpickles Have you tried using `spring server` to run spring in the foreground (having quit all the other springs) -- this could give you a stack trace that might help...

@radarek @lime An alternative to `enable_dependency_loading` is to just turn `eager_load` off: https://github.com/timdiggins/rails_rspec_spring_eager_load_bug/tree/no-eager-loading. It doesn't AFAICT gain anything to turn `eager_load` on (despite the very old (2012) message about turning...

Hi @Splines - it's a hard question to answer exactly. It's fair to say the project activity has slowed down significantly from when the original README was written. But I...

Actually, I've discovered that it was something was matching IE11 user agent, so I'm now a bit nervous of using this gem at all (have backed out from it). I...

@rjaus I'm trying to work on a PR for this, but struggling to run individual tests. I'll make a separate issue for this (I don't normally use minitest, so could...

I've made a pretty crappy little PR for this - it does tick the basic box of providing an errors object, but it's not super nice. I feel like the...

> Yes, I've also noticed that OAuth related errors such as token invalid / expired, return false, but it's unclear unless you're catching those errors from save! I think that...

> Why are you re-raising the captured exception in the non bang method? If people want exceptions, they should use `save!` > > Perhaps `raise unless e.validation_errors` could be the...

In regards to the validation happening client side or just leave to server-side... The concept behind the xeroizer library seems to be that the models behaves analogously to Rails models/records...