rackr 0.0.57 → 0.0.59
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 +17 -15
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f0717bfcd3ef76fb167d5d9c607677f2519aaefea78e1824e10722d8ab4880af
|
4
|
+
data.tar.gz: d188f6a38ad01a10263d2d7595b92082efec01a51fd228936453766de782e81f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e94b33c2376a0cd03cd2e893f6b9bae62fb9ab84623e807b8a7f4cefd56c81173a3b530eee305faf471687e467e41221584fe74fbf97fd2bb6b535e9cfaf6b6
|
7
|
+
data.tar.gz: 425c353eb81a4831e0e0bcdf208cc4cb07eadbeaa593e5dca0029e063a17b91cf482528ad0eedde2a5622672ef3c04f4a3214d827ba3a64f79d75fcaa91de46b
|
data/lib/rackr/action.rb
CHANGED
@@ -1,24 +1,23 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require 'byebug'
|
4
3
|
require 'erubi'
|
5
4
|
require 'oj'
|
6
5
|
require 'rack'
|
7
6
|
|
8
7
|
class Rackr
|
9
8
|
module Action
|
10
|
-
|
11
|
-
html: lambda do |val,
|
12
|
-
[
|
9
|
+
RENDER = {
|
10
|
+
html: lambda do |val, status: 200, headers: {}, html: nil|
|
11
|
+
[status, { 'content-type' => 'text/html', 'content-length' => val.bytesize.to_s }.merge(headers), [val]]
|
13
12
|
end,
|
14
|
-
text: lambda do |val,
|
15
|
-
[
|
13
|
+
text: lambda do |val, status: 200, headers: {}, text: nil|
|
14
|
+
[status, { 'content-type' => 'text/plain', 'content-length' => val.bytesize.to_s }.merge(headers), [val]]
|
16
15
|
end,
|
17
|
-
json: lambda do |val,
|
16
|
+
json: lambda do |val, status: 200, headers: {}, json: nil|
|
18
17
|
val = Oj.dump(val, mode: :compat) unless val.is_a?(String)
|
19
|
-
[
|
18
|
+
[status, { 'content-type' => 'application/json', 'content-length' => val.bytesize.to_s }.merge(headers), [val]]
|
20
19
|
end
|
21
|
-
}
|
20
|
+
}.freeze
|
22
21
|
|
23
22
|
def self.included(base)
|
24
23
|
base.class_eval do
|
@@ -31,9 +30,10 @@ class Rackr
|
|
31
30
|
end
|
32
31
|
|
33
32
|
def render(**opts)
|
34
|
-
type
|
33
|
+
type = opts.keys.first
|
34
|
+
content = opts[type]
|
35
35
|
|
36
|
-
|
36
|
+
Rackr::Action::RENDER[type]&.call(content, **opts) || _render_view(content, **opts)
|
37
37
|
end
|
38
38
|
|
39
39
|
def view_response(
|
@@ -92,7 +92,8 @@ class Rackr
|
|
92
92
|
)
|
93
93
|
end
|
94
94
|
|
95
|
-
[status, { 'content-type' => 'text/html' }.merge(headers),
|
95
|
+
[status, { 'content-type' => 'text/html', 'content-length' => parsed_erb.bytesize.to_s }.merge(headers),
|
96
|
+
[parsed_erb]]
|
96
97
|
end
|
97
98
|
|
98
99
|
def load_json(val)
|
@@ -102,7 +103,8 @@ class Rackr
|
|
102
103
|
end
|
103
104
|
|
104
105
|
def html_response(content = '', status: 200, headers: {})
|
105
|
-
Rack::Response.new(content, status,
|
106
|
+
Rack::Response.new(content, status,
|
107
|
+
{ 'content-type' => 'text/html', 'content-length' => content.bytesize.to_s }.merge(headers))
|
106
108
|
end
|
107
109
|
|
108
110
|
def json_response(content = {}, status: 200, headers: {})
|
@@ -110,7 +112,7 @@ class Rackr
|
|
110
112
|
Rack::Response.new(
|
111
113
|
content,
|
112
114
|
status,
|
113
|
-
{ 'content-type' => 'application/json' }.merge(headers)
|
115
|
+
{ 'content-type' => 'application/json', 'content-length' => content.bytesize.to_s }.merge(headers)
|
114
116
|
)
|
115
117
|
end
|
116
118
|
|
@@ -118,7 +120,7 @@ class Rackr
|
|
118
120
|
Rack::Response.new(
|
119
121
|
content,
|
120
122
|
status,
|
121
|
-
{ 'content-type' => 'text/plain' }.merge(headers)
|
123
|
+
{ 'content-type' => 'text/plain', 'content-length' => content.bytesize.to_s }.merge(headers)
|
122
124
|
)
|
123
125
|
end
|
124
126
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.59
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henrique F. Teixeira
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: erubi
|