I recently began programming and learning Ruby and JavaScript and was attempting to read my html file through my Sinatra server using a config.ru
file.
The server runs, its hitting all the routes but I think there may be something wrong with the server code for the index page:
get("/") do
content_type :html
File.read( File.expand_path("../views/index.html", __FILE__) )
end