Skip to content

Instantly share code, notes, and snippets.

@bhb
Created November 20, 2008 22:49
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 bhb/27250 to your computer and use it in GitHub Desktop.
Save bhb/27250 to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'pathname'
get "/" do
html = "<h1>Your files, sir.</h1>"
dir = "./files/"
html += file_link("./files/foo.txt")
html
end
helpers do
def file_link(file)
filename = Pathname.new(file).basename
"<a href='#{file}'>#{filename}</a><br/>"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment