rack-insight 0.5.1 → 0.5.2
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.
- data/lib/rack/insight/render.rb +1 -1
- data/lib/rack/insight/version.rb +1 -1
- metadata +1 -1
data/lib/rack/insight/render.rb
CHANGED
|
@@ -69,7 +69,7 @@ module Rack::Insight
|
|
|
69
69
|
message_src = ::ERB.new(file, nil, "-").src
|
|
70
70
|
else
|
|
71
71
|
message_src = "Rack::Insight: Unable to find expected view template #{primary_file_path} or a #{filename}.html.erb template in rack-insight's :panel_load_paths. Configured panel load paths are: #{Rack::Insight::Config.config[:panel_load_paths].inspect}"
|
|
72
|
-
|
|
72
|
+
warn message_src
|
|
73
73
|
message_src = ('<p>' + message_src + '</p>').html_safe
|
|
74
74
|
end
|
|
75
75
|
message_src
|
data/lib/rack/insight/version.rb
CHANGED