make rack::lint happy

This commit is contained in:
Thomas Reynolds 2012-12-25 22:30:25 -08:00
parent 55291edc65
commit 1f3650ccea

View file

@ -41,7 +41,7 @@ module Middleman
# Render through the Rack interface so middleware and mounted apps get a shot
rack_client = ::Rack::Test::Session.new(@app.class)
response = rack_client.get(URI.escape(resource.destination_path), {}, { "bypass_asset_hash" => true })
response = rack_client.get(URI.escape(resource.destination_path), {}, { "bypass_asset_hash" => "true" })
raise "#{resource.path} should be in the sitemap!" unless response.status == 200
digest = Digest::SHA1.hexdigest(response.body)[0..7]