sql_tracer 0.1.20 → 0.2.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 603fe4695cc816746484d90dcfbaeedd104d5e72
|
4
|
+
data.tar.gz: 4a9ab8ef5422d0feb6c0e8c496fd80c252930531
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbbd08ff12c6270f67c039ca4b4b087ba45647e1fcb35f3b4d176fbcfc3871fc78c3b40fbff34f1668065228f0bf4414eb1ad3dd86811b80c0a0195030824ab3
|
7
|
+
data.tar.gz: 819c9a888d4823c77f3dcb5b25682d6f730cc5a58ff0e40dacbd3f32e6058d7d109507ebe1dc0dd45df922747b9aeb632fdb6ba0cf02eb8fe4aa811b30be2f37
|
@@ -61,7 +61,7 @@
|
|
61
61
|
<input class="sql-filter-class" type="text">
|
62
62
|
<label class="path-filter-label" for="input-2">PATH:</label>
|
63
63
|
<input class="path-filter-class" type="text">
|
64
|
-
<input type="checkbox" class="sort_by_checkbox" value='db'> Sort by DB
|
64
|
+
<label><input type="checkbox" class="sort_by_checkbox" value='db'> Sort by DB</label>
|
65
65
|
<!--<input type="checkbox" class="sort_by_checkbox" value='operator'> Sort by Operator-->
|
66
66
|
</a>
|
67
67
|
</h4>
|
@@ -100,7 +100,7 @@
|
|
100
100
|
}
|
101
101
|
},
|
102
102
|
complete: function() {
|
103
|
-
setTimeout("refresh()",
|
103
|
+
setTimeout("refresh()", 5000)
|
104
104
|
}
|
105
105
|
});
|
106
106
|
}
|
data/lib/sql_tracer/formatter.rb
CHANGED
@@ -13,7 +13,7 @@ module SqlTracer
|
|
13
13
|
|
14
14
|
def self.print_tips
|
15
15
|
puts 'SqlTracer is watching and will capture backtrace when sql is executed, '\
|
16
|
-
'open
|
16
|
+
'open http://localhost:3000/sql_tracer/index in browser for detailed information'
|
17
17
|
end
|
18
18
|
|
19
19
|
def self.print_sql(sql)
|
data/lib/sql_tracer/version.rb
CHANGED