Reputation: 2951
I am looking for any basic Ruby on rails tutorial that uses RESTful web services with json, If somebody can throw a very basic app that implement those technologies i would appreciate, I have tried to google but i couldn't find anything.Also if you could give me a real world scenario where we would actually use that ,would be even more helpful.Thank you very much
Upvotes: 9
Views: 16790
Reputation: 133
ActiveResource is the simple way to implement restful web service's in rails
http://www.ibm.com/developerworks/library/wa-railsactive/
http://api.rubyonrails.org/v3.2.13/classes/ActiveResource/Base.html
Upvotes: 1
Reputation: 6669
This could be helpful also
is a tutorial of Rails 4 with MongoDB
http://moredevideas.wordpress.com/2013/04/26/rails-4-with-mongodb/
MongoDB is a NoSQL database. MongoDB is a document-oriented database that stores JSON documents, and is schemaless, that means that each document can have it own schema.
Upvotes: 0