Skip to content

Commit

Permalink
fix some whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenhaddox committed Nov 2, 2012
1 parent 8f073d9 commit 32f8a07
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config.ru
Original file line number Original file line Diff line number Diff line change
@@ -1,13 +1,13 @@
use Rack::Static, use Rack::Static,
:urls => ["/deck.js", "/js", "/css", "/images"], :urls => ["/deck.js", "/js", "/css", "/images"],
:root => "public" :root => "public"


run lambda { |env| run lambda { |env|
[ [
200, 200,
{ {
'Content-Type' => 'text/html', 'Content-Type' => 'text/html',
'Cache-Control' => 'public, max-age=86400' 'Cache-Control' => 'public, max-age=86400'
}, },
File.open('public/index.html', File::RDONLY) File.open('public/index.html', File::RDONLY)
] ]
Expand Down

0 comments on commit 32f8a07

Please sign in to comment.