Last active
August 29, 2017 19:32
-
-
Save gastonambrogi/aca4d91379825484c71b868b144338bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
get '/' do | |
'hola!' | |
end | |
get '/:nombre' do | |
"hola "+ params[:nombre] +"!" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get '/' do | |
.. mostrar algo .. | |
end | |
post '/' do | |
.. crear algo .. | |
end | |
put '/' do | |
.. reemplazar algo .. | |
end | |
patch '/' do | |
.. modificar algo .. | |
end | |
delete '/' do | |
.. eliminar algo .. | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment