Skip to content

Commit

Permalink
Print out hacklet for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
mcolyer committed Jun 5, 2013
1 parent ebcb8b9 commit 5cb875e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.ru
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
require './app'

use Rack::CommonLogger
use Rack::RPC::Endpoint, Server.new, :path => "/xmlrpc.php"
use Rack::RPC::Endpoint, Server.new, :path => '/xmlrpc.php'

app = proc do |env|
[ 200, {'Content-Type' => 'text/plain'}, ["a"] ]
[ 200, {'Content-Type' => 'text/plain'}, ['hacklet'] ]
end

run app

0 comments on commit 5cb875e

Please sign in to comment.