Nat Budin

Results 80 comments of Nat Budin

Do you know why the input is ending up as a comma? I don't think this is normal Rails behavior; is it ruby-openid doing it?

Ah, makes sense. I suspect that ruby-openid is throwing that error and we're not catching it correctly. Can you paste a traceback, if you have it, to indicate which file...

Thanks for the traceback! Unfortunately, this confirms what I was afraid of: the error is originating inside a call from rack-openid. By this point in the request, devise_openid_authenticatable is out...

I agree, there's no obvious straightforward solution to this. I'm also not sure what the desired behavior is here: it doesn't seem like timing out the session globally should be...

I think you can simply override the routes in your `routes.rb` by defining them above your `devise_for` call, therefore they will get a higher route priority than the ones we...

Needs tests, see issue #15 for details.

I don't plan to continue maintaining this gem in light of the announcement. If you, or someone else, would like to become the new maintainer, I would be glad to...

Ah, ok. I was looking at the code and seeing that cas_service_url does take into account the URL scheme used for the request, so I was confused as to what...

I don't know if your'e using nginx, but this may be helpful to fixing your issue without needing to do a code change: http://stackoverflow.com/questions/6330595/how-to-fix-sinatra-redirecting-https-to-http-under-nginx

You don't need to modify database.yml - in fact, Heroku ignores it. Instead, do: heroku config:add EXTERNAL_DATABASE_URL=mysql://my_username:[email protected]_host.com (mailto:[email protected]_host.com)/my_db and restart the app. On Saturday, September 10, 2011 at 5:40 AM,...