Creating a Web Service in Rails

Hi, I am new to the Ruby and Rails platform. Can someone tell me how to create a simple web service in Rails.

+4
source share
2 answers

you can use this , this , this book , and this page

+7
source

I recommend this book http://ruby.railstutorial.org/ruby-on-rails-tutorial-book

Ruby on Rails Tutorial Exploring Web Development with Rails Michael Hartle

Create a simple web service in Rails.

  • rails new projectname
  • cd projectname
  • install package
  • rails s
-5
source

All Articles