Ember Data and Meetup API

Posted blog about using Ember Data with the Meetup API, thought people might be interested in it, http://blog.mrloop.com/blog/2013/04/07/ember-data-and-the-meetup-api/

@mrloop Thanks for the awesome example of DS.BasicAdapter and the Sync Object. I’m trying to build another example app using the OMDb API (http://www.omdbapi.com/). However I am having issues with the Sync Object’s find(id, process). For some reason process is undefined. I’m using the latest dist build from Ember Data and Ember RC2. Any tips or suggestions would greatly be appreciated.

https://github.com/ttdonovan/emberjs-movies#fixmes

@ttdonovan have sent a pull request, https://github.com/ttdonovan/emberjs-movies/pull/1, it wasn’t the process function which was undefined but the primaryKey function of the returned object from process which is undefined . This doesn’t match up with expect behavour as describe in the blog, Stabilizing Ember Data.

@mrloop Awesome thanks! I merged the pull request. I’ll look into it in more detail later this evening. Thanks again for the assistance.