pretty_debug 0.8.9 → 0.8.10
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/pretty_debug.rb +6 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d288e66c5d7b41275eccae6de3f227c5319c8811
|
4
|
+
data.tar.gz: f1aae0fe805016931dcdf90e9f24e5bfbffa1e50
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4fd2016da477210a1c810554e0faa5366ada66b03ac365dd18a8e2e2d8384b60b1ce13d5fe7c986865d428df9cfee54cf11b432c78ab3164c478963762deef45
|
7
|
+
data.tar.gz: 6f2c0e555b75325866604168fc45469a75fcd178eea0c615d497e8606eb40a2729dcb923a35edd693e602b93d750743b037987db1745c51a5264cad7da65b702
|
data/lib/pretty_debug.rb
CHANGED
@@ -130,6 +130,8 @@ class PrettyDebug
|
|
130
130
|
PrettyArray.new(beautify(Kernel.caller_locations))
|
131
131
|
end
|
132
132
|
Hook = %w[
|
133
|
+
at_exit
|
134
|
+
set_trace_func
|
133
135
|
initialize
|
134
136
|
method_missing
|
135
137
|
singleton_method_added
|
@@ -146,6 +148,10 @@ class PrettyDebug
|
|
146
148
|
intitialize_copy
|
147
149
|
intitialize_clone
|
148
150
|
intitialize_dup
|
151
|
+
prepend
|
152
|
+
append_features
|
153
|
+
extend_features
|
154
|
+
prepend_features
|
149
155
|
]
|
150
156
|
def self.beautify a
|
151
157
|
a
|