rackr 0.0.52 → 0.0.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 279a41741ba1b761a98b837d7d27b92c8cce088c87f99bedb644e3bbae653b7a
4
- data.tar.gz: a8d1193621683b375605ebc4807440560b4a45fff0d8240c1493dd2b060d4077
3
+ metadata.gz: 207a61eead2347b17a9f17c396934954640a8658ebede9625ad62e05e2db9465
4
+ data.tar.gz: e8e7c162619f150483c1c1000f4cfff16a65cc68596871d9f034c9d6fcdf5e1a
5
5
  SHA512:
6
- metadata.gz: 0ae5954c85b11789fe66e14e1b9851036d2a9ca6a9b1ce61faf05515b3336204ae77521339b16d32b51ef0ee84914763918769dfe8c14ec078c32f41ee0a9e6d
7
- data.tar.gz: 5d00b7e15751b6c2c7699bd169ade250a173082b98e2ee9621019678fa2498ab71426400b26094c4f044e550766e375e002b6d9f7ee6d550bd4b388f53056815
6
+ metadata.gz: 9b5c019b83ffd983b74a35b07588d190f64c1ac01e1c7efffd9cc5595d5901f653878c5ad3ba2496b4557841d12a0886cdab68d9eda262604290a73345474c00
7
+ data.tar.gz: c3b6d38fa59027763530fe14f1e4630fe78de3aa568c7e998d93725e06bb3f30308be706fa26f5c30cf2fe5d32c568065f39617dd1db4d4a7222d9558a6068a6
@@ -9,35 +9,34 @@ class Rackr
9
9
  html do
10
10
  tag :head do
11
11
  title 'Application error'
12
- tag :style, %q(
13
- body {
14
- margin: 0 auto;
15
- width: 98.5%;
16
- font-size: 1.1em;
17
- background-color: #666666;
18
- font-family: monospace;
19
- margin-top: 1em;
20
- }
21
- p {
22
- background-color: #000000;
23
- padding: 1em;
24
- font-size: 1.3em;
25
- }
26
- div {
27
- background-color: #191919;
28
- color: white;
29
- padding: 0em 2em;
30
- border: 5px solid #191919;
31
- }
32
- h1 {
33
- background-color: #464646;
34
- padding: 1em;
35
- }
36
- )
12
+ _ %q(<style>
13
+ html * { padding:0; margin:0; }
14
+ body * { padding:10px 20px; }
15
+ body * * { padding:0; }
16
+ body { font:small sans-serif; }
17
+ body>div { border-bottom:1px solid #ddd; }
18
+ h1 { font-weight:normal; }
19
+ h2 { margin-bottom:.8em; }
20
+ h2 span { font-size:80%; color:#666; font-weight:normal; }
21
+ #summary { background: #ffc; }
22
+ #summary h2 { font-weight: normal; color: #666; }
23
+ pre {
24
+ background: #f8f8f8;
25
+ padding: 1em;
26
+ margin-bottom: 1em;
27
+ }
28
+ </style>)
37
29
  end
38
30
  tag :body do
39
- div do
40
- h1 env['error'].inspect
31
+ div id: 'summary' do
32
+ h1 env['error'].class.to_s
33
+ if env['error'].message.size > 1000
34
+ h2 "#{env['error'].message.slice(0, 1000)} ..."
35
+ else
36
+ h2 env['error'].message
37
+ end
38
+ end
39
+ div id: 'backtrace' do
41
40
  backtrace(env)
42
41
  end
43
42
  end
@@ -46,8 +45,13 @@ class Rackr
46
45
 
47
46
  def backtrace(env)
48
47
  first, *tail = env['error'].backtrace
48
+ h2 do
49
+ _ 'Traceback '
50
+ span '(innermost first)'
51
+ end
49
52
 
50
53
  tag :p, first, class: "first-p"
54
+ br
51
55
 
52
56
  line_number = extract_line_number(first)
53
57
  match = first.match(%r{^(\/[\w\/.-]+)})
@@ -62,10 +66,9 @@ class Rackr
62
66
  "#{i+1}: #{line} \n"
63
67
  end
64
68
 
65
- tag :pre, slice_around_index(lines, line_number).join("")
69
+ tag :pre, slice_around_index(lines, line_number).join("").chomp
66
70
  end
67
71
 
68
- hr
69
72
  tag :p, tail.join("\n")
70
73
  end
71
74
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rackr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.52
4
+ version: 0.0.53
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrique F. Teixeira
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-04 00:00:00.000000000 Z
11
+ date: 2025-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: erubi