aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/debug.rhtml
blob: 918c28486cc365015523d64e754d0996c322695b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<% @title = "Debug" %>

<h1><%=@title%></h1>

<p>You are <%= h @http_auth_user %></p>

<h2>Environment variables</h2>
<pre>
<%= @request_env.to_yaml %>
</pre>

<h2>Parameters</h2>
<pre>
<%= params.to_yaml %>
</pre>

<h2>Session</h2>
<pre>
<%= session.to_yaml %>
</pre>