Is it possible that I create my model using "rails generate model..." which creates all them CRUD stuff including views for create, update and delete, AND then I override rails CRUD methods to do something else instead for example printing them all out or whatever?
I need to instead encode my model into JSON and send that to a middleware that will save it into a database.
A small example will really help... thanks a lot...
Please help!