Skip to content

Instantly share code, notes, and snippets.

@GRGSIBERIA
Created January 16, 2014 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GRGSIBERIA/8452352 to your computer and use it in GitHub Desktop.
Save GRGSIBERIA/8452352 to your computer and use it in GitHub Desktop.
Sinatraを動かす
require 'sinatra/base'
require 'sinatra/reloader'
require 'slim'
class Server < Sinatra::Base
register Sinatra::Reloader
get '/' do
slim :index
end
end
Server.run! :host => 'localhost', :port => 4567
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment