Re: Has anyone got pony working with gmail on heroku?

2010-11-04 Thread morgoth
On 28 Paź, 20:04, Jimmy moxley.ja...@googlemail.com wrote: @ morgoth Is mail gem easier to install than pony?  Pony seemed like a good option as it was on the sinatrarb site, and since it was written by Adam at Heroku, I was hoping for an easy install. Gem pony since version 1.0 depends on

Re: Heroku Users Group meetup in SF, 11/3 @ 7pm

2010-11-04 Thread Kelly Felkins
I guess we can just show up. On Thu, Oct 28, 2010 at 12:08 PM, Ben Scofield b...@heroku.com wrote: Greetings, Heroku users! In case you haven’t heard, we wanted to let you know that the first-ever Heroku Users Group (known henceforth and forever more as a HUG) meetup will be held at our

Re: Parallel HTTP requests

2010-11-04 Thread Brandon Casci
I do something very similar. I just create a background job for each lookup. I think the delay for a background job could be up to 5 seconds, plus however long the job takes, and however long your queue is. It's pretty much your only option if you want to take that process out of the controller

Re: Heroku down time today, about 30 minutes total

2010-11-04 Thread Brandon Casci
Three 9's are triple 6's if you turn them upside down. \m/ On Fri, Oct 29, 2010 at 2:52 AM, Al al.fon...@gmail.com wrote: So, 3 nine's is what to expect from Heroku? On Oct 28, 3:50 am, Peter Marklund peter_markl...@fastmail.fm wrote: Regardless with hosting option you choose you will have

Re: Parallel HTTP requests

2010-11-04 Thread Brian M
One option to consider is Typhoeus. https://github.com/pauldix/typhoeus I've used it with success to do parallel queries to the Twitter API. I haven't tried using it on Heroku. Brian On Nov 2, 12:39 pm, Alejandro Cadavid acada...@gmail.com wrote: Hi guys, I'm building an app which

HELP!!! Redis To Go

2010-11-04 Thread Serradura
My application has stopped working! Used the DJ and migrated to the Redis To Go! But I can not make workers work! When I run to test: Heroku rake jobs: work - trace returns this: rake aborted! Address family not supported by protocol - socket(2)

http basic auth

2010-11-04 Thread Brandon Casci
Anyone know if basic http auth supported on Heroku? I don't get the login box so I'm assuming no, unless there is a special convention I don't know about. -- = Brandon Casci Loudcaster http://loudcaster.com = --

Re: http basic auth

2010-11-04 Thread Jimmy Thrasher
Not sure what you mean. If you implement it, it's supported.. it's just a webserver returning a 401 Unauthorized HTTP response. The browser will take care of popping up the dialog. Apache's .htaccess and other non-code ways of accomplishing it aren't supported. Here's an example for Sinatra:

Re: http basic auth

2010-11-04 Thread Chris Hanks
Don't see why Heroku would have a problem with it. I've been using Rails' basic auth functionality on Heroku for months with zero issues. On Nov 4, 6:39 pm, Jimmy Thrasher ji...@jimmythrasher.com wrote: Not sure what you mean.  If you implement it, it's supported.. it's just a webserver

Re: http basic auth

2010-11-04 Thread Brandon Casci
I figured it out... this works authenticate_or_request_with_http_basic this does not authenticate_with_http_basic oops! On Thu, Nov 4, 2010 at 9:43 PM, Chris Hanks christopher.m.ha...@gmail.comwrote: Don't see why Heroku would have a problem with it. I've been using Rails' basic auth