module-cluster 1.3.3 → 1.3.4
Sign up to get free protection for your applications and to get access to all the features.
@@ -93,10 +93,13 @@ module ModuleCluster::CascadeFeatures
|
|
93
93
|
end
|
94
94
|
|
95
95
|
includes.uniq!
|
96
|
+
includes.compact!
|
96
97
|
extends.uniq!
|
98
|
+
extends.compact!
|
97
99
|
cascades.each do |this_dependency_module, this_method_and_module_set|
|
98
100
|
this_method_and_module_set.each do |this_method, this_module_set|
|
99
101
|
this_module_set.uniq!
|
102
|
+
this_module_set.compact!
|
100
103
|
end
|
101
104
|
end
|
102
105
|
|