Kelly FelkinsKelly Felkins
Standup 3/31/2010: Ruby Summer Of Code, Neo4j
edit Posted by Kelly Felkins on Wednesday March 31, 2010 at 09:21AM

Ask for Help

"Our demo site is running on nginx and protected by basic auth. Flash doesn't do basic auth. What do do?"

"Any suggestions for using ActiveResource to access nested resources?" One team was trying to use ActiveResource to access a nested restful web service and found the documentation lacking.

Interesting Things

  • RSOC (Ruby Summer of Code) is looking for mentors. Pivotal is a sponsor and in addition will be providing desk space for some RSOC participants.
  • Neo4j meetup at Twitter HQ tonight! Details on the neo4j blog

Comments

  1. malclocke malclocke on March 31, 2010 at 01:39PM

    I recently blogged re ActiveResource nesting:

    http://wholemeal.co.nz/blog/2010/03/08/active-resource-associations-and-nested-resources

  2. Toby Toby on March 31, 2010 at 10:46PM

    This might help in regards to the ActiveResource question: http://opensoul.org/2010/2/16/active-resource-in-practice

  3. Erik Hanson Erik Hanson on March 31, 2010 at 11:30PM

    Our solution for the Nginx basic-auth problem: turn off basic auth for the one request that was being made by Flash. We actually tried that earlier but it didn't work -- it turns out that in the "location" block we added, we had to enable passenger with "passenger_enabled on;" (even though we enabled it in the enclosing block).