rack-insight 0.5.17 → 0.5.18
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/CHANGELOG
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
== HEAD
|
|
2
2
|
|
|
3
|
+
== 0.5.18 / 2012-09-13 - Peter Boling
|
|
4
|
+
|
|
5
|
+
* Bug Fixes
|
|
6
|
+
|
|
7
|
+
* panel content is no longer covered by panel toolbar when positioned on bottom
|
|
8
|
+
|
|
9
|
+
* Other
|
|
10
|
+
|
|
11
|
+
* Fix Typo in templates panel
|
|
12
|
+
|
|
3
13
|
== 0.5.17 / 2012-09-13 - Peter Boling
|
|
4
14
|
|
|
5
15
|
* New Features
|
|
@@ -14,6 +24,8 @@
|
|
|
14
24
|
Read the source for Rack::Insight::MagicInsight and heed the warnings.
|
|
15
25
|
MagicInsight is used internally by Rack::Insight for magic panels and the templates panel.
|
|
16
26
|
|
|
27
|
+
* panel content now stays out of your page content, by displaying below it.
|
|
28
|
+
|
|
17
29
|
* Bug Fixes
|
|
18
30
|
|
|
19
31
|
* Fixed the hardly working TemplatesPanel (Issue 1)
|
data/Gemfile.lock
CHANGED
|
@@ -55,7 +55,7 @@ module Rack::Insight
|
|
|
55
55
|
|
|
56
56
|
def time_summary
|
|
57
57
|
if children.any?
|
|
58
|
-
"#{_human_time}, (exclusive: #{_human_time(_exclusive_time)}, child: #{_human_time(_child_time)}"
|
|
58
|
+
"#{_human_time}, (exclusive: #{_human_time(_exclusive_time)}, child: #{_human_time(_child_time)})"
|
|
59
59
|
else
|
|
60
60
|
_human_time
|
|
61
61
|
end
|
data/lib/rack/insight/version.rb
CHANGED