query.limit = 10 query.findObjectsInBackgroundWithBlock( lambda do |objects, error| if not error objects.each do |user| puts user["name"] end end end )
tree . ├── Gemfile ├── Procfile ├── README.md └── config.ru # config.ru require 'bundler' Bundler.require app = Helios::Application.new { service :data, model: Dir['*.xcdatamodel*'].first if Dir['*.xcdatamodel*'].any? service :push_notification service :in_app_purchase service :passbook } run app