Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
why_rack/server.rb
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
15 lines (12 sloc)
383 Bytes
This file contains 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 'rubygems' | |
require 'sinatra/base' | |
# Define a class whose instances can be mounted as Sinatra applications. | |
# | |
# See http://www.sinatrarb.com/intro.html for a introduction to Sinatra which | |
# should help you understand this example clear if you aren't familiar with | |
# Sinatra. | |
class Server < Sinatra::Base | |
get '/hello/:person' do |person| | |
"Hello, #{person}" | |
end | |
end |