rubiii

Results 43 comments of rubiii

interesting approach. when i started looking into this back then, i had problems resetting authentication for httpclient and realized that resetting things might not be the best approach, because not...

for net/http we would probably need to add net-http-persistent to support keep-alive. as far as i know, httpclient and curb both support this feature. em-http-request [seems to do so as...

well, the problem with global state is that you can't for example use multiple different loggers for httpi in a single project. let's say you're using savon to connect to...

changing the design could make it easier to support persistent connections, but it's only a very small part of a larger issue. ps. if you need middleware, you should probably...

what exactly do you mean by "splitting adapter attributes from request options"? in the end, all request options need to be passed to an adapter somehow. still not sure if...

You could overwrite the `User#authenticate` method (which is what I’m currently doing): ``` ruby class User def authenticate(password) return false if locked? user = super(password) failed_auth_attempt! unless user user end...

I’m also using a username and no emails. What about making this configurable?

I changed the GitHub target in `pubspec.yml` to `https://github.com/gskinnerTeam/auto_size_text.git` which fixed the issue for me.