bulk_api
bulk_api copied to clipboard
This change allows sproutcore to call cross-origin-resources.
I was following the guide here http://sproutguides-drogus.strobeapp.com/rails.html#rails-application to create a sproutcore + rails app. However, after I ran 'rails generate bulk:install', the second line 'route mount Bulk::Sproutcore.new => "/_sproutcore"' was...
Version 0.0.10 doesn't seem to be mounting the Sproutcore application (mount Bulk::Sproutcore.new => "/_sproutcore"). Has anybody else been running into this issue?
I was trying to use this to see if I could use the bulk api with rails 3.1 and sproutcore 2, but I received the following error after putting buik_api...
A single bulk call on multiple items still results in multiple db operations. Perhaps these could be bundles together somehow. (Example: marking all as done or clearing al marked-as-done in...
In the todos app, I've added `Todos.store.commitRecords();` to "Mark All as Done" toggle but the PUT request is failing with a YAML?! error: ``` javascript allAreDone: function(key, value) { if...
I got another quick question that might be interesting for further development: What are the reasons for using `ActionController` instead of a little `Rack` application? `Bulk::ApiController` does very little things...