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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rackr/action.rb +17 -15
  3. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 817c73cfeca9d09f9bba0002c6bc19b34d5b6bcc0299a24a3e9bb87b075c12b5
4
- data.tar.gz: e1c4710e34bf53a780a7d6b132469151fc2e4fafaf8a27205266414a02ac7299
3
+ metadata.gz: f0717bfcd3ef76fb167d5d9c607677f2519aaefea78e1824e10722d8ab4880af
4
+ data.tar.gz: d188f6a38ad01a10263d2d7595b92082efec01a51fd228936453766de782e81f
5
5
  SHA512:
6
- metadata.gz: 63ff89e8f20793339587a042e626ab483ff524a21b90195e0b28e00c02a9e741b665b306fe30f07e05e0d7922b4ec6f6064bda8a019b0b6e0daf32cdd7a17be6
7
- data.tar.gz: a308d0fe7e5df0c9d69ed789338bb7ded223b48c05bfac49230d588ee5b926dbb73473c4aadd1690594025779d82ba46b06a71b6b0577acf3b3bd712d1446ecf
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
- METHODS = {
11
- html: lambda do |val, **opts|
12
- [opts[:status] || 200, { 'content-type' => 'text/html' }.merge(opts[:headers] || {}), [val]]
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, **opts|
15
- [opts[:status] || 200, { 'content-type' => 'text/plain' }.merge(opts[:headers] || {}), [val]]
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, **opts|
16
+ json: lambda do |val, status: 200, headers: {}, json: nil|
18
17
  val = Oj.dump(val, mode: :compat) unless val.is_a?(String)
19
- [opts[:status] || 200, { 'content-type' => 'application/json' }.merge(opts[:headers] || {}), [val]]
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, content = opts.first
33
+ type = opts.keys.first
34
+ content = opts[type]
35
35
 
36
- METHODS[type]&.(content, **opts) || _render_view(content, **opts)
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), [parsed_erb]]
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, { 'content-type' => 'text/html' }.merge(headers))
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.57
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-30 00:00:00.000000000 Z
10
+ date: 2025-03-31 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: erubi