rackr 0.0.54 → 0.0.57
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 +72 -76
- data/lib/rackr/router/build_request.rb +2 -19
- data/lib/rackr/router/errors/dev_html.rb +15 -14
- data/lib/rackr/router/errors.rb +4 -4
- data/lib/rackr/router/route.rb +2 -0
- data/lib/rackr/router.rb +39 -31
- data/lib/rackr.rb +41 -5
- metadata +3 -7
- data/lib/rackr/html.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 817c73cfeca9d09f9bba0002c6bc19b34d5b6bcc0299a24a3e9bb87b075c12b5
|
4
|
+
data.tar.gz: e1c4710e34bf53a780a7d6b132469151fc2e4fafaf8a27205266414a02ac7299
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63ff89e8f20793339587a042e626ab483ff524a21b90195e0b28e00c02a9e741b665b306fe30f07e05e0d7922b4ec6f6064bda8a019b0b6e0daf32cdd7a17be6
|
7
|
+
data.tar.gz: a308d0fe7e5df0c9d69ed789338bb7ded223b48c05bfac49230d588ee5b926dbb73473c4aadd1690594025779d82ba46b06a71b6b0577acf3b3bd712d1446ecf
|
data/lib/rackr/action.rb
CHANGED
@@ -1,11 +1,25 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'byebug'
|
3
4
|
require 'erubi'
|
4
5
|
require 'oj'
|
5
6
|
require 'rack'
|
6
7
|
|
7
8
|
class Rackr
|
8
9
|
module Action
|
10
|
+
METHODS = {
|
11
|
+
html: lambda do |val, **opts|
|
12
|
+
[opts[:status] || 200, { 'content-type' => 'text/html' }.merge(opts[:headers] || {}), [val]]
|
13
|
+
end,
|
14
|
+
text: lambda do |val, **opts|
|
15
|
+
[opts[:status] || 200, { 'content-type' => 'text/plain' }.merge(opts[:headers] || {}), [val]]
|
16
|
+
end,
|
17
|
+
json: lambda do |val, **opts|
|
18
|
+
val = Oj.dump(val, mode: :compat) unless val.is_a?(String)
|
19
|
+
[opts[:status] || 200, { 'content-type' => 'application/json' }.merge(opts[:headers] || {}), [val]]
|
20
|
+
end
|
21
|
+
}
|
22
|
+
|
9
23
|
def self.included(base)
|
10
24
|
base.class_eval do
|
11
25
|
attr_reader :routes, :config, :db if self != Rackr
|
@@ -16,13 +30,19 @@ class Rackr
|
|
16
30
|
@db = config[:db]
|
17
31
|
end
|
18
32
|
|
33
|
+
def render(**opts)
|
34
|
+
type, content = opts.first
|
35
|
+
|
36
|
+
METHODS[type]&.(content, **opts) || _render_view(content, **opts)
|
37
|
+
end
|
38
|
+
|
19
39
|
def view_response(
|
20
40
|
paths,
|
21
41
|
status: 200,
|
22
42
|
headers: {},
|
23
43
|
layout_path: 'layout'
|
24
44
|
)
|
25
|
-
|
45
|
+
_render_view(
|
26
46
|
paths,
|
27
47
|
status: status,
|
28
48
|
headers: headers,
|
@@ -31,12 +51,13 @@ class Rackr
|
|
31
51
|
)
|
32
52
|
end
|
33
53
|
|
34
|
-
def
|
54
|
+
def _render_view(
|
35
55
|
paths,
|
36
56
|
status: 200,
|
37
57
|
headers: {},
|
38
58
|
layout_path: 'layout',
|
39
|
-
response_instance: false
|
59
|
+
response_instance: false,
|
60
|
+
view: nil
|
40
61
|
)
|
41
62
|
base_path = config.dig(:views, :path) || 'views'
|
42
63
|
|
@@ -52,15 +73,15 @@ class Rackr
|
|
52
73
|
::File.read("#{base_path}/#{paths}.html.erb")
|
53
74
|
end
|
54
75
|
|
55
|
-
layout_content = file_or_nil.("#{base_path}/#{layout_path}.html.erb")
|
76
|
+
layout_content = file_or_nil.call("#{base_path}/#{layout_path}.html.erb")
|
56
77
|
|
57
78
|
parsed_erb =
|
58
79
|
if layout_content
|
59
|
-
|
60
|
-
|
80
|
+
load_erb(layout_content) do
|
81
|
+
load_erb(file_content, binding_context: binding)
|
61
82
|
end
|
62
83
|
else
|
63
|
-
|
84
|
+
load_erb(file_content, binding_context: binding)
|
64
85
|
end
|
65
86
|
|
66
87
|
if response_instance
|
@@ -73,87 +94,62 @@ class Rackr
|
|
73
94
|
|
74
95
|
[status, { 'content-type' => 'text/html' }.merge(headers), [parsed_erb]]
|
75
96
|
end
|
76
|
-
end
|
77
|
-
end
|
78
97
|
|
79
|
-
|
80
|
-
|
81
|
-
if respond_to?(:layout)
|
82
|
-
content = layout(&block)
|
83
|
-
else
|
84
|
-
html_layout(&block)
|
85
|
-
content = html_slice
|
86
|
-
end
|
87
|
-
end
|
98
|
+
def load_json(val)
|
99
|
+
return Oj.load(val.body.read) if val.is_a?(Rack::Request)
|
88
100
|
|
89
|
-
|
90
|
-
end
|
91
|
-
|
92
|
-
def html_response(content = '', status: 200, headers: {}, &block)
|
93
|
-
if content == '' && block_given? && respond_to?(:html_slice)
|
94
|
-
if respond_to?(:layout)
|
95
|
-
content = layout(&block)
|
96
|
-
else
|
97
|
-
html_layout(&block)
|
98
|
-
content = html_slice
|
101
|
+
Oj.load(val)
|
99
102
|
end
|
100
|
-
end
|
101
103
|
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
def json(content = {}, status: 200, headers: {})
|
106
|
-
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
107
|
-
[status, { 'content-type' => 'application/json' }.merge(headers), [content]]
|
108
|
-
end
|
109
|
-
|
110
|
-
def json_response(content = {}, status: 200, headers: {})
|
111
|
-
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
112
|
-
Rack::Response.new(
|
113
|
-
content,
|
114
|
-
status,
|
115
|
-
{ 'content-type' => 'application/json' }.merge(headers)
|
116
|
-
)
|
117
|
-
end
|
104
|
+
def html_response(content = '', status: 200, headers: {})
|
105
|
+
Rack::Response.new(content, status, { 'content-type' => 'text/html' }.merge(headers))
|
106
|
+
end
|
118
107
|
|
119
|
-
|
120
|
-
|
121
|
-
|
108
|
+
def json_response(content = {}, status: 200, headers: {})
|
109
|
+
content = Oj.dump(content, mode: :compat) unless content.is_a?(String)
|
110
|
+
Rack::Response.new(
|
111
|
+
content,
|
112
|
+
status,
|
113
|
+
{ 'content-type' => 'application/json' }.merge(headers)
|
114
|
+
)
|
115
|
+
end
|
122
116
|
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
117
|
+
def text_response(content, status: 200, headers: {})
|
118
|
+
Rack::Response.new(
|
119
|
+
content,
|
120
|
+
status,
|
121
|
+
{ 'content-type' => 'text/plain' }.merge(headers)
|
122
|
+
)
|
123
|
+
end
|
130
124
|
|
131
|
-
|
132
|
-
|
133
|
-
|
125
|
+
def load_erb(content, binding_context: nil)
|
126
|
+
eval(Erubi::Engine.new(content).src, binding_context)
|
127
|
+
end
|
134
128
|
|
135
|
-
|
136
|
-
|
137
|
-
|
129
|
+
def head(status, headers: {})
|
130
|
+
[status, headers, []]
|
131
|
+
end
|
138
132
|
|
139
|
-
|
140
|
-
|
141
|
-
|
133
|
+
def head_response(status, headers: {})
|
134
|
+
Rack::Response.new(nil, status, headers)
|
135
|
+
end
|
142
136
|
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
137
|
+
def redirect_response(url, headers: {})
|
138
|
+
Rack::Response.new(
|
139
|
+
nil,
|
140
|
+
302,
|
141
|
+
{ 'location' => url }.merge(headers)
|
142
|
+
)
|
143
|
+
end
|
150
144
|
|
151
|
-
|
152
|
-
|
153
|
-
|
145
|
+
def redirect_to(url, headers: {})
|
146
|
+
[302, { 'location' => url }.merge(headers), []]
|
147
|
+
end
|
154
148
|
|
155
|
-
|
156
|
-
|
149
|
+
def response(body = nil, status = 200, headers = {})
|
150
|
+
Rack::Response.new(body, status, headers)
|
151
|
+
end
|
152
|
+
end
|
157
153
|
end
|
158
154
|
end
|
159
155
|
end
|
@@ -11,24 +11,15 @@ class Rackr
|
|
11
11
|
def call(route = nil)
|
12
12
|
request = Rack::Request.new(@env)
|
13
13
|
|
14
|
-
return request if route.nil?
|
15
|
-
return request unless route.has_params
|
14
|
+
return request if route.nil? || !route.has_params
|
16
15
|
|
17
|
-
update_request_params(request, route)
|
18
|
-
end
|
19
|
-
|
20
|
-
private
|
21
|
-
|
22
|
-
def update_request_params(request, route)
|
23
16
|
i = 0
|
24
|
-
|
25
17
|
while i < route.splitted_path.size
|
26
18
|
route_word = route.splitted_path[i]
|
27
19
|
if route_word.start_with?(':')
|
28
20
|
param = @spplited_request_path[i]
|
29
|
-
param = param.to_i if is_a_integer_string?(param)
|
30
21
|
|
31
|
-
|
22
|
+
request.params[route_word[1..].to_sym] = param
|
32
23
|
end
|
33
24
|
|
34
25
|
i += 1
|
@@ -36,14 +27,6 @@ class Rackr
|
|
36
27
|
|
37
28
|
request
|
38
29
|
end
|
39
|
-
|
40
|
-
def is_a_integer_string?(string)
|
41
|
-
string =~ /\A[-+]?[0-9]*\.?[0-9]+\Z/
|
42
|
-
end
|
43
|
-
|
44
|
-
def update_request_param(request, word, param)
|
45
|
-
request.update_param(word.sub(':', '').to_sym, param)
|
46
|
-
end
|
47
30
|
end
|
48
31
|
end
|
49
32
|
end
|
@@ -1,15 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'html_slice'
|
4
|
+
|
1
5
|
class Rackr
|
2
6
|
class Router
|
3
7
|
module Errors
|
4
8
|
class DevHtml
|
5
9
|
include Rackr::Action
|
6
|
-
include
|
10
|
+
include ::HtmlSlice
|
7
11
|
|
8
12
|
def call(env)
|
9
|
-
|
13
|
+
html_layout do
|
10
14
|
tag :head do
|
11
15
|
title 'Application error'
|
12
|
-
_
|
16
|
+
_ '<style>
|
13
17
|
html * { padding:0; margin:0; }
|
14
18
|
body * { padding:10px 20px; }
|
15
19
|
body * * { padding:0; }
|
@@ -25,7 +29,7 @@ class Rackr
|
|
25
29
|
padding: 1em;
|
26
30
|
margin-bottom: 1em;
|
27
31
|
}
|
28
|
-
</style>
|
32
|
+
</style>'
|
29
33
|
end
|
30
34
|
tag :body do
|
31
35
|
div id: 'summary' do
|
@@ -50,39 +54,36 @@ class Rackr
|
|
50
54
|
span '(innermost first)'
|
51
55
|
end
|
52
56
|
|
53
|
-
tag :p, first, class:
|
57
|
+
tag :p, first, class: 'first-p'
|
54
58
|
br
|
55
59
|
|
56
60
|
line_number = extract_line_number(first)
|
57
|
-
match = first.match(%r{^(
|
61
|
+
match = first.match(%r{^(/[\w/.-]+)})
|
58
62
|
file_path = (match ? match[1] : nil)
|
59
|
-
|
63
|
+
unless file_path.nil?
|
60
64
|
lines = []
|
61
65
|
File.open(file_path) do |file|
|
62
66
|
lines = file.readlines
|
63
67
|
end
|
64
68
|
|
65
69
|
lines.map!.with_index do |line, i|
|
66
|
-
"#{i+1}: #{line} \n"
|
70
|
+
"#{i + 1}: #{line} \n"
|
67
71
|
end
|
68
72
|
|
69
|
-
tag :pre, slice_around_index(lines, line_number).join(
|
73
|
+
tag :pre, slice_around_index(lines, line_number).join('').chomp
|
70
74
|
end
|
71
75
|
|
72
76
|
tag :p, tail.join("\n")
|
73
77
|
end
|
74
78
|
|
75
|
-
|
76
79
|
def extract_line_number(input)
|
77
|
-
if match = input.match(/:(\d+):in/)
|
80
|
+
if (match = input.match(/:(\d+):in/))
|
78
81
|
match[1].to_i
|
79
|
-
else
|
80
|
-
nil
|
81
82
|
end
|
82
83
|
end
|
83
84
|
|
84
85
|
def slice_around_index(array, index)
|
85
|
-
return array if index
|
86
|
+
return array if index.nil? || index < 1
|
86
87
|
|
87
88
|
index -= 1
|
88
89
|
start_index = [index - 2, 0].max
|
data/lib/rackr/router/errors.rb
CHANGED
@@ -13,15 +13,15 @@ class Rackr
|
|
13
13
|
|
14
14
|
class << self
|
15
15
|
def check_scope_name(path)
|
16
|
-
return if path.is_a?(String) || path.is_a?(Symbol) || path
|
16
|
+
return if path.is_a?(String) || path.is_a?(Symbol) || path.nil?
|
17
17
|
|
18
18
|
raise(InvalidBranchNameError, "Route scope name must be a `string` or a `symbol`, got: '#{path}'")
|
19
19
|
end
|
20
20
|
|
21
21
|
def check_scope_slashes(path)
|
22
|
-
|
23
|
-
|
24
|
-
|
22
|
+
return unless path.is_a?(String) && path.include?('/')
|
23
|
+
|
24
|
+
raise(InvalidBranchNameError, "Avoid slashes in scope name, use nested scopes instead, got: '#{path}'")
|
25
25
|
end
|
26
26
|
|
27
27
|
def check_path(path)
|
data/lib/rackr/router/route.rb
CHANGED
data/lib/rackr/router.rb
CHANGED
@@ -35,14 +35,16 @@ class Rackr
|
|
35
35
|
end
|
36
36
|
|
37
37
|
def call(env)
|
38
|
-
|
38
|
+
path_info = env['PATH_INFO']
|
39
|
+
|
40
|
+
@splitted_request_path_info = path_info.split('/')
|
39
41
|
@current_request_path_info =
|
40
|
-
|
42
|
+
path_info == '/' ? path_info : path_info.chomp('/') # remove trailing "/"
|
41
43
|
|
42
44
|
request_builder = BuildRequest.new(env, @splitted_request_path_info)
|
43
45
|
env['REQUEST_METHOD'] = 'GET' if env['REQUEST_METHOD'] == 'HEAD'
|
44
46
|
|
45
|
-
route_instance = match_route(env)
|
47
|
+
route_instance = match_route(env['REQUEST_METHOD'])
|
46
48
|
return call_endpoint(@not_found, request_builder.call) if route_instance.nil?
|
47
49
|
|
48
50
|
rack_request = request_builder.call(route_instance)
|
@@ -74,7 +76,7 @@ class Rackr
|
|
74
76
|
rescue Exception => e
|
75
77
|
return @error.call(request_builder.call, e) if !@dev_mode || ENV['RACKR_ERROR_DEV']
|
76
78
|
|
77
|
-
call_endpoint(Errors::DevHtml, env.merge({'error' => e}))
|
79
|
+
call_endpoint(Errors::DevHtml, env.merge({ 'error' => e }))
|
78
80
|
end
|
79
81
|
|
80
82
|
def add(method, path, endpoint, as: nil, route_befores: [], route_afters: [])
|
@@ -86,8 +88,8 @@ class Rackr
|
|
86
88
|
|
87
89
|
method = :get if method == :head
|
88
90
|
|
89
|
-
wildcard =
|
90
|
-
path = path.sub(
|
91
|
+
wildcard = path == '*'
|
92
|
+
path = path.is_a?(Symbol) ? path.inspect : path.sub(%r{\A/}, '')
|
91
93
|
path_with_scopes = "/#{not_empty_scopes.join('/')}#{put_path_slash(path)}"
|
92
94
|
add_named_route(method, path_with_scopes, as)
|
93
95
|
|
@@ -147,7 +149,7 @@ class Rackr
|
|
147
149
|
def call_endpoint(endpoint, content)
|
148
150
|
return endpoint.call(content) if endpoint.respond_to?(:call)
|
149
151
|
|
150
|
-
if endpoint
|
152
|
+
if endpoint < Rackr::Action || endpoint < Rackr::Callback
|
151
153
|
return endpoint.new(routes: @routes, config: @config).call(content)
|
152
154
|
end
|
153
155
|
|
@@ -165,8 +167,8 @@ class Rackr
|
|
165
167
|
return @routes.send(method.downcase)[:root] = path_with_scopes if path_with_scopes == '/'
|
166
168
|
return @routes.send(method.downcase)[as] = path_with_scopes unless as.nil?
|
167
169
|
|
168
|
-
key = path_with_scopes.sub(
|
169
|
-
@routes.send(method.downcase)[
|
170
|
+
key = path_with_scopes.sub('/', '').gsub(':', '').gsub('/', '_')
|
171
|
+
@routes.send(method.downcase)[key.to_s.to_sym] = path_with_scopes
|
170
172
|
end
|
171
173
|
|
172
174
|
def push_to_scope(method, route_instance)
|
@@ -186,6 +188,7 @@ class Rackr
|
|
186
188
|
def put_path_slash(path)
|
187
189
|
if not_empty_scopes != []
|
188
190
|
return '' if ['/', ''].include?(path)
|
191
|
+
|
189
192
|
return "/#{path}"
|
190
193
|
end
|
191
194
|
|
@@ -196,35 +199,40 @@ class Rackr
|
|
196
199
|
@scopes.reject { |v| (v == '') }
|
197
200
|
end
|
198
201
|
|
199
|
-
def match_route(
|
200
|
-
|
201
|
-
|
202
|
-
last_tail = @splitted_request_path_info.drop(1)
|
202
|
+
def match_route(request_method)
|
203
|
+
last_tail = @splitted_request_path_info.drop(1)
|
204
|
+
found_scopes = []
|
203
205
|
|
204
|
-
|
205
|
-
else
|
206
|
-
@instance_routes[env['REQUEST_METHOD']].dig(*found_scopes)
|
207
|
-
end
|
206
|
+
instance_routes = @instance_routes[request_method]
|
208
207
|
|
209
|
-
|
208
|
+
while last_tail && !last_tail.empty?
|
209
|
+
segment = last_tail.shift
|
210
|
+
found_route = nil
|
210
211
|
|
211
|
-
|
212
|
-
|
212
|
+
instance_routes.each_key do |scope|
|
213
|
+
next if scope == :__instances
|
213
214
|
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
215
|
+
if segment == scope
|
216
|
+
found_scopes << scope
|
217
|
+
instance_routes = @instance_routes[request_method].dig(*found_scopes)
|
218
|
+
break
|
219
|
+
elsif scope.start_with?(':')
|
220
|
+
found_route = @instance_routes[request_method].dig(
|
221
|
+
*(found_scopes + [:__instances])
|
222
|
+
)&.detect { |route_instance| route_instance.match?(@current_request_path_info) }
|
219
223
|
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
224
|
+
return found_route if found_route
|
225
|
+
|
226
|
+
found_scopes << scope
|
227
|
+
instance_routes = @instance_routes[request_method].dig(*found_scopes)
|
228
|
+
break
|
229
|
+
end
|
230
|
+
end
|
225
231
|
end
|
226
232
|
|
227
|
-
|
233
|
+
@instance_routes[request_method].dig(
|
234
|
+
*(found_scopes + [:__instances])
|
235
|
+
)&.detect { |route_instance| route_instance.match?(@current_request_path_info) }
|
228
236
|
end
|
229
237
|
end
|
230
238
|
end
|
data/lib/rackr.rb
CHANGED
@@ -2,18 +2,15 @@
|
|
2
2
|
|
3
3
|
require_relative 'rackr/action'
|
4
4
|
require_relative 'rackr/callback'
|
5
|
-
require 'html_slice'
|
6
|
-
require_relative 'rackr/html'
|
7
5
|
require_relative 'rackr/router/errors/dev_html'
|
8
6
|
require_relative 'rackr/router'
|
9
7
|
|
10
8
|
class Rackr
|
11
9
|
class NotFound < StandardError; end
|
12
10
|
|
13
|
-
HTTP_METHODS = %w[GET POST DELETE PUT TRACE OPTIONS PATCH]
|
11
|
+
HTTP_METHODS = %w[GET POST DELETE PUT TRACE OPTIONS PATCH].freeze
|
14
12
|
|
15
13
|
include Action
|
16
|
-
include HTML
|
17
14
|
|
18
15
|
def initialize(config = {}, before: [], after: [])
|
19
16
|
@router = Router.new(config, before: before, after: after)
|
@@ -41,7 +38,7 @@ class Rackr
|
|
41
38
|
@router.append_scope(
|
42
39
|
name,
|
43
40
|
scope_befores: before,
|
44
|
-
scope_afters: after
|
41
|
+
scope_afters: after
|
45
42
|
)
|
46
43
|
instance_eval(&block)
|
47
44
|
|
@@ -64,10 +61,47 @@ class Rackr
|
|
64
61
|
end
|
65
62
|
end
|
66
63
|
|
64
|
+
# Beta
|
65
|
+
def resources(name, id:)
|
66
|
+
const_name = name.to_s.capitalize
|
67
|
+
id ||= :id
|
68
|
+
|
69
|
+
scope name do
|
70
|
+
get Object.const_get("Actions::#{const_name}::Index") if Object.const_defined?("Actions::#{const_name}::Index")
|
71
|
+
get 'new', Object.const_get("Actions::#{const_name}::New") if Object.const_defined?("Actions::#{const_name}::New")
|
72
|
+
post Object.const_get("Actions::#{const_name}::Index") if Object.const_defined?("Actions::#{const_name}::Index")
|
73
|
+
|
74
|
+
resource_actions = proc do
|
75
|
+
get Object.const_get("Actions::#{const_name}::Show") if Object.const_defined?("Actions::#{const_name}::Show")
|
76
|
+
if Object.const_defined?("Actions::#{const_name}::Edit")
|
77
|
+
get 'edit', Object.const_get("Actions::#{const_name}::Edit")
|
78
|
+
end
|
79
|
+
if Object.const_defined?("Actions::#{const_name}::Update")
|
80
|
+
put Object.const_get("Actions::#{const_name}::Update")
|
81
|
+
end
|
82
|
+
if Object.const_defined?("Actions::#{const_name}::Delete")
|
83
|
+
delete Object.const_get("Actions::#{const_name}::Delete")
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
if Object.const_defined?("Callbacks::#{const_name}::Assign")
|
88
|
+
scope(id.to_sym, before: Object.const_get("Callbacks::#{const_name}::Assign"), &resource_actions)
|
89
|
+
else
|
90
|
+
scope(id.to_sym, &resource_actions)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
67
95
|
HTTP_METHODS.each do |http_method|
|
68
96
|
define_method(http_method.downcase.to_sym) do |*params, before: [], after: [], as: nil, &block|
|
69
97
|
path = params[0] || ''
|
70
98
|
endpoint = params[1] || ''
|
99
|
+
scopes = []
|
100
|
+
if path.is_a?(String) && path.include?('/')
|
101
|
+
scopes = path.split('/')[0...-1]
|
102
|
+
path = path.split('/').pop
|
103
|
+
end
|
104
|
+
scopes.each { |scope_name| @router.append_scope(scope_name) }
|
71
105
|
|
72
106
|
if block.respond_to?(:call)
|
73
107
|
@router.add(
|
@@ -93,6 +127,8 @@ class Rackr
|
|
93
127
|
route_afters: after
|
94
128
|
)
|
95
129
|
end
|
130
|
+
|
131
|
+
scopes.length.times { @router.clear_last_scope }
|
96
132
|
end
|
97
133
|
end
|
98
134
|
end
|
metadata
CHANGED
@@ -1,14 +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.57
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henrique F. Teixeira
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date: 2025-
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: erubi
|
@@ -87,7 +86,6 @@ files:
|
|
87
86
|
- lib/rackr.rb
|
88
87
|
- lib/rackr/action.rb
|
89
88
|
- lib/rackr/callback.rb
|
90
|
-
- lib/rackr/html.rb
|
91
89
|
- lib/rackr/router.rb
|
92
90
|
- lib/rackr/router/build_request.rb
|
93
91
|
- lib/rackr/router/errors.rb
|
@@ -97,7 +95,6 @@ homepage: https://github.com/henrique-ft/rackr
|
|
97
95
|
licenses:
|
98
96
|
- MIT
|
99
97
|
metadata: {}
|
100
|
-
post_install_message:
|
101
98
|
rdoc_options: []
|
102
99
|
require_paths:
|
103
100
|
- lib
|
@@ -112,8 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
112
109
|
- !ruby/object:Gem::Version
|
113
110
|
version: '0'
|
114
111
|
requirements: []
|
115
|
-
rubygems_version: 3.
|
116
|
-
signing_key:
|
112
|
+
rubygems_version: 3.6.2
|
117
113
|
specification_version: 4
|
118
114
|
summary: A complete, simple and easy web micro-framework.
|
119
115
|
test_files: []
|