Skip to content

Instantly share code, notes, and snippets.

@darui00kara
Created May 11, 2015 08:17
Show Gist options
  • Save darui00kara/e087b11a2e5c0f5753cb to your computer and use it in GitHub Desktop.
Save darui00kara/e087b11a2e5c0f5753cb to your computer and use it in GitHub Desktop.
# encoding: utf-8
# File Name: sinatraTest.rb
# Create Day is 2015/05/08
# Last Update Day is 2015/05/08
# Gem List
gem 'tilt', '1.4.1'
# Require List
require 'sinatra'
# sinatra reloader is classic type
require 'sinatra/reloader' if development?
require 'haml'
require 'tilt'
get '/' do
@title = "Hello world!!"
@text = "erb Test!!"
haml :view
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment