I am in the process of hosting my first rails app and I would like to not open it up to the public until I am done with all production work, which might take a few weeks, but I would like to expose it to friends/beta testers. I use authlogic for authentication but I don't even want anybody to go that point, I would like to set up some form authentication (http basic?) that only certian people can login with and once they do, the site works as usual. Basically I just want this new layer of login to not mess the application, something that I can just slap on and remove once the prod testing is done.
1 - Does authlogic http authentication work for this purpose? Anythnig else?