maglev
maglev copied to clipboard
Faster, smoother iOS development
i like to see more examples here in maglev readme copied from the remote_model readme (if they still working with maglev)
remote_find_all calls it's block with the params objects,response but the #get, #post, etc methods call back with the order swapped (response, objects).
Is it possible to do nested collection paths, let's say ``` ruby class Event < Maglev::Model remote_attributes :id, :name has_many :photos end class Photo < Maglev::Model remote_attributes :id, :event_id, :url...