mirror of
https://github.com/lostisland/faraday.git
synced 2025-12-15 00:03:17 -05:00
31 lines
388 B
Ruby
31 lines
388 B
Ruby
require 'rubygems'
|
|
require 'sinatra'
|
|
|
|
get '/hello_world' do
|
|
'hello world'
|
|
end
|
|
|
|
get '/json' do
|
|
"[1,2,3]"
|
|
end
|
|
|
|
post '/hello' do
|
|
"hello #{params[:name]}"
|
|
end
|
|
|
|
put '/hello' do
|
|
"hello #{params[:name]}"
|
|
end
|
|
|
|
post '/echo_name' do
|
|
%/{"name":#{params[:name].inspect}}/
|
|
end
|
|
|
|
put '/echo_name' do
|
|
%/{"name":#{params[:name].inspect}}/
|
|
end
|
|
|
|
delete '/delete_me' do
|
|
%/{"deleted":true}/
|
|
end
|