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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 279a41741ba1b761a98b837d7d27b92c8cce088c87f99bedb644e3bbae653b7a
4
- data.tar.gz: a8d1193621683b375605ebc4807440560b4a45fff0d8240c1493dd2b060d4077
3
+ metadata.gz: bc3b5a671b8b0eef9b86ca1819ecdd86a9a9ef9d9baa03c93f16e63b6a3bae20
4
+ data.tar.gz: 94be73bde785a3031cc3c76278e61f77c61637bdb0e279f659aa2a4e5707f44d
5
5
  SHA512:
6
- metadata.gz: 0ae5954c85b11789fe66e14e1b9851036d2a9ca6a9b1ce61faf05515b3336204ae77521339b16d32b51ef0ee84914763918769dfe8c14ec078c32f41ee0a9e6d
7
- data.tar.gz: 5d00b7e15751b6c2c7699bd169ade250a173082b98e2ee9621019678fa2498ab71426400b26094c4f044e550766e375e002b6d9f7ee6d550bd4b388f53056815
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
- [status, { 'content-type' => 'application/json' }.merge(headers), [Oj.dump(content, mode: :compat)]]
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
- Oj.dump(content, mode: :compat),
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
- 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.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-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
@@ -78,7 +78,7 @@ dependencies:
78
78
  - - "<"
79
79
  - !ruby/object:Gem::Version
80
80
  version: '1.0'
81
- description: A complete http router solution that fit well with pure rack apps.
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 http router solution that fit well with pure rack apps.
118
+ summary: A complete, simple and easy web micro-framework.
119
119
  test_files: []