Module: Rack::Bug::Render
Defined Under Namespace
Modules: CompiledTemplates
Instance Method Summary
collapse
Instance Method Details
#compile(filename, local_assigns) ⇒ Object
24
25
26
27
28
29
30
|
# File 'lib/rack/bug/render.rb', line 24
def compile(filename, local_assigns)
render_symbol = method_name(filename, local_assigns)
if !CompiledTemplates.instance_methods.include?(render_symbol.to_s)
compile!(filename, local_assigns)
end
end
|
#compile!(filename, local_assigns) ⇒ Object
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# File 'lib/rack/bug/render.rb', line 32
def compile!(filename, local_assigns)
render_symbol = method_name(filename, local_assigns)
locals_code = local_assigns.keys.map { |key| "#{key} = local_assigns[:#{key}];" }.join
source = <<-end_src
def #{render_symbol}(local_assigns)
#{locals_code}
#{compiled_source(filename)}
end
end_src
CompiledTemplates.module_eval(source, filename, 0)
end
|
#compiled_source(filename) ⇒ Object
46
47
48
|
# File 'lib/rack/bug/render.rb', line 46
def compiled_source(filename)
::ERB.new(::File.read(::File.dirname(__FILE__) + "/../bug/views/#{filename}.html.erb"), nil, "-").src
end
|
#method_name(filename, local_assigns) ⇒ Object
50
51
52
53
54
55
56
57
58
|
# File 'lib/rack/bug/render.rb', line 50
def method_name(filename, local_assigns)
if local_assigns && local_assigns.any?
method_name = method_name_without_locals(filename).dup
method_name << "_locals_#{local_assigns.keys.map { |k| k.to_s }.sort.join('_')}"
else
method_name = method_name_without_locals(filename)
end
method_name.to_sym
end
|
#method_name_without_locals(filename) ⇒ Object
60
61
62
|
# File 'lib/rack/bug/render.rb', line 60
def method_name_without_locals(filename)
filename.split("/").join("_")
end
|
#render_template(filename, local_assigns = {}) ⇒ Object
18
19
20
21
22
|
# File 'lib/rack/bug/render.rb', line 18
def render_template(filename, local_assigns = {})
compile(filename, local_assigns)
render_symbol = method_name(filename, local_assigns)
send(render_symbol, local_assigns)
end
|
#signed_params(hash) ⇒ Object
10
11
12
|
# File 'lib/rack/bug/render.rb', line 10
def signed_params(hash)
ParamsSignature.sign(request, hash)
end
|