14 lines
181 B
Ruby
14 lines
181 B
Ruby
|
|
require 'sinatra'
|
|
require 'erb'
|
|
|
|
$root = "/home/pranshu/Documents/proj/perc/test"
|
|
|
|
class Perc < Sinatra::Application
|
|
set :views, $root
|
|
|
|
get "/" do
|
|
erb :main
|
|
end
|
|
|
|
end
|