namebox 0.0.3 → 0.0.4
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/namebox.rb +0 -4
- metadata +1 -1
data/lib/namebox.rb
CHANGED
@@ -195,8 +195,6 @@ class Namebox
|
|
195
195
|
|
196
196
|
# save preexisting methods
|
197
197
|
methods_before = get_methods
|
198
|
-
$msb = methods_before["Symbol#&"]
|
199
|
-
$mob = methods_before["Object#&"]
|
200
198
|
|
201
199
|
# ###############################################################
|
202
200
|
# RUN THE CODE, which can change the methods of protected modules
|
@@ -207,8 +205,6 @@ class Namebox
|
|
207
205
|
|
208
206
|
# get methods after changes
|
209
207
|
methods_after = get_methods
|
210
|
-
$msa = methods_after["Symbol#&"]
|
211
|
-
$moa = methods_after["Object#&"]
|
212
208
|
|
213
209
|
# compare with preexisting data to discover affected methods
|
214
210
|
unless methods_after == methods_before
|