Ricky Gu

Results 10 comments of Ricky Gu

ok upon more digging. at lib/devise/strategies/magic_link_authenticatable.rb:30 resource = mapping.to.find_by(id: data["data"]["resource"]["key"]) is giving the error because mongoid is expecting a string for ID for find_by, but `data["data"]["resource"]["key"]` returns an Array: `>>...

Ok I forked the project and changed resource = mapping.to.find_by(id: data["data"]["resource"]["key"]) to resource = mapping.to.find_by(id: data["data"]["resource"]["key"].first) and now it's working on my mongoid project. I'm not sure what the effect...

I tested your mongoid-fix branch and it is not working. getting the error: 'Invalid or expired login link." and redirecting to the login page. I haven't had time to dig...

yeah i did generate one. I logged out. clicked on the old link it failed. so I sent another email to myself and clicked on the new link but still...

@zachfeldman my change_headers_on_each_request is already set to false. I found the performance hit on true was too high and it was buggy when I have burst of request.

daemons are in lib/daemons bundle exec lib/daemons/_ctl status -> daemon.rb: running [pid 6334] daemons are working for sure because otherwise my app wouldn't be working. Daemons::Rails::Monitoring.default.controllers works fine in console...

just tried setting the instance variable in the controller but no dice. still shows not_exists when the daemons are clearly running. I'm using Rails 4.0.0 and daemons-rails (1.2.1) and ruby...

On mac 10.14.2, `csrutil enable --without debug` doesn't work. I had to disable completely to kind of work. I would often get this error warning but everything works fine. ```...

Paul, your link was helpful. I got the color working now, but how do you set the icon via interface builder?