rackr 0.0.58 → 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 +14 -13
- 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,6 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require 'byebug'
|
4
3
|
require 'erubi'
|
5
4
|
require 'oj'
|
6
5
|
require 'rack'
|
@@ -8,17 +7,17 @@ require 'rack'
|
|
8
7
|
class Rackr
|
9
8
|
module Action
|
10
9
|
RENDER = {
|
11
|
-
html: lambda do |val,
|
12
|
-
[
|
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
|
@@ -34,7 +33,7 @@ class Rackr
|
|
34
33
|
type = opts.keys.first
|
35
34
|
content = opts[type]
|
36
35
|
|
37
|
-
Rackr::Action::RENDER[type]&.(content, **opts) || _render_view(content, **opts)
|
36
|
+
Rackr::Action::RENDER[type]&.call(content, **opts) || _render_view(content, **opts)
|
38
37
|
end
|
39
38
|
|
40
39
|
def view_response(
|
@@ -93,7 +92,8 @@ class Rackr
|
|
93
92
|
)
|
94
93
|
end
|
95
94
|
|
96
|
-
[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]]
|
97
97
|
end
|
98
98
|
|
99
99
|
def load_json(val)
|
@@ -103,7 +103,8 @@ class Rackr
|
|
103
103
|
end
|
104
104
|
|
105
105
|
def html_response(content = '', status: 200, headers: {})
|
106
|
-
Rack::Response.new(content, status,
|
106
|
+
Rack::Response.new(content, status,
|
107
|
+
{ 'content-type' => 'text/html', 'content-length' => content.bytesize.to_s }.merge(headers))
|
107
108
|
end
|
108
109
|
|
109
110
|
def json_response(content = {}, status: 200, headers: {})
|
@@ -111,7 +112,7 @@ class Rackr
|
|
111
112
|
Rack::Response.new(
|
112
113
|
content,
|
113
114
|
status,
|
114
|
-
{ 'content-type' => 'application/json' }.merge(headers)
|
115
|
+
{ 'content-type' => 'application/json', 'content-length' => content.bytesize.to_s }.merge(headers)
|
115
116
|
)
|
116
117
|
end
|
117
118
|
|
@@ -119,7 +120,7 @@ class Rackr
|
|
119
120
|
Rack::Response.new(
|
120
121
|
content,
|
121
122
|
status,
|
122
|
-
{ 'content-type' => 'text/plain' }.merge(headers)
|
123
|
+
{ 'content-type' => 'text/plain', 'content-length' => content.bytesize.to_s }.merge(headers)
|
123
124
|
)
|
124
125
|
end
|
125
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
|