rackr 0.0.52 → 0.0.54
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 +4 -4
- data/lib/rackr/action.rb +4 -2
- data/lib/rackr/router/errors/dev_html.rb +32 -29
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc3b5a671b8b0eef9b86ca1819ecdd86a9a9ef9d9baa03c93f16e63b6a3bae20
|
4
|
+
data.tar.gz: 94be73bde785a3031cc3c76278e61f77c61637bdb0e279f659aa2a4e5707f44d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c51c2245fa6a6f3c7c488a8c10974b7ed6f742c9e32d31011926efa34630fe9647c6fa0ec6b823fc8e4d9f2086fd1c2fb2c3030e8bb668494e5bdf782b50c0b
|
7
|
+
data.tar.gz: cb61baccbcf55cd758b8f255b386c999b119d8d5df6683efc84de927aaab4139d9990644060099595f85012d420e9ff72c12e144f453cfc9d4e877e9a583327a
|
data/lib/rackr/action.rb
CHANGED
@@ -103,12 +103,14 @@ class Rackr
|
|
103
103
|
end
|
104
104
|
|
105
105
|
def json(content = {}, status: 200, headers: {})
|
106
|
-
|
106
|
+
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
107
|
+
[status, { 'content-type' => 'application/json' }.merge(headers), [content]]
|
107
108
|
end
|
108
109
|
|
109
110
|
def json_response(content = {}, status: 200, headers: {})
|
111
|
+
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
110
112
|
Rack::Response.new(
|
111
|
-
|
113
|
+
content,
|
112
114
|
status,
|
113
115
|
{ 'content-type' => 'application/json' }.merge(headers)
|
114
116
|
)
|
@@ -9,35 +9,34 @@ class Rackr
|
|
9
9
|
html do
|
10
10
|
tag :head do
|
11
11
|
title 'Application error'
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
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'].
|
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.
|
4
|
+
version: 0.0.54
|
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-
|
11
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: erubi
|
@@ -78,7 +78,7 @@ dependencies:
|
|
78
78
|
- - "<"
|
79
79
|
- !ruby/object:Gem::Version
|
80
80
|
version: '1.0'
|
81
|
-
description: A complete
|
81
|
+
description: A complete, simple and easy web micro-framework.
|
82
82
|
email: hriqueft@gmail.com
|
83
83
|
executables: []
|
84
84
|
extensions: []
|
@@ -115,5 +115,5 @@ requirements: []
|
|
115
115
|
rubygems_version: 3.5.16
|
116
116
|
signing_key:
|
117
117
|
specification_version: 4
|
118
|
-
summary: A complete
|
118
|
+
summary: A complete, simple and easy web micro-framework.
|
119
119
|
test_files: []
|