When I add this to my gem file ( rails 4.0.1 )
gem 'rails-api', git: 'https://github.com/rails-api/rails-api.git', branch: 'master'
My routes seem to break (although rake routes is the same before/after)
I get this after I attempt to update a simple scaffold model
No route matches [POST] "/surveys/1" when I update a record
by commenting out this gem it works again - any ideas what I did wrong?
thanks!
PS: Adding this to gem file so I can use strong parameters to follow railscasts#196 in rails 4