katie
katie

Reputation: 2951

Rails 3 RESTful web services with json

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

Answers (3)

Shiva
Shiva

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

agusgambina
agusgambina

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

Deekor
Deekor

Reputation: 9499

For those coming to this question from google like myself, take a look at some of the tutorials here, they were a great help for me.

Upvotes: 3

Related Questions