I am considering to purchase the book Service-Oriented Design with Ruby and Rails by Paul Dix and I would like to know:

  1. If the book is for Ruby on Rails, why the author write about Sinatra, Nokogiri, and Typhoeus (read the intro from Amazon to read what I am saying)? In order to create my Web Service I'll need to use those softwares or I will be able to do that using only Ruby on Rails?

  2. The book refers to Ruby on Rails 3 or other versions?

  3. After reading the book I will be really able to create Web Services and REST API with my Ruby on Rails applications?

  4. Do you advice to buy this book?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
  1. Because Rails adds functionality you often won't need, at the cost of overhead and thus speed. For simple services to execute faster, the author also describes other alternatives. In chapter 5, a service is implemented in both Rails, Sinatra and Rack to highlight their pros and cons. You will be able to implement a service several ways.

  2. Rails 2.3 and 3.

  3. Yes

  4. Yes, it was a real eye-opener to me as far as web services with Ruby goes, and the author had a lot of good points regarding service design.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.