Reputation: 1146
How can I make a webservice in ruby that interact with ruby web application.
Thanks!
Upvotes: 0
Views: 150
Reputation: 32162
For simple stupid web service you can't go past Sinatra
The cannonical example.
require 'rubygems'
require 'sinatra'
get '/hi' do
"Hello World!"
end
That's it
Upvotes: 1
Reputation: 28392
You have not given us a lot to go on here however it is likely that you are interested in one or more of the following. Try googling them to see which one will do what you want
Upvotes: 1