module-cluster 2.0.0 → 2.0.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.
- data/lib/module/cluster/module_support.rb +4 -4
- metadata +1 -1
|
@@ -13,9 +13,9 @@ module ::Module::Cluster::ModuleSupport
|
|
|
13
13
|
#
|
|
14
14
|
def append_features( hooked_instance )
|
|
15
15
|
|
|
16
|
-
super if defined?( super )
|
|
17
|
-
|
|
18
16
|
::Module::Cluster.hook_cluster_events( self, hooked_instance, :before_include )
|
|
17
|
+
|
|
18
|
+
super if defined?( super )
|
|
19
19
|
|
|
20
20
|
end
|
|
21
21
|
|
|
@@ -43,10 +43,10 @@ module ::Module::Cluster::ModuleSupport
|
|
|
43
43
|
#
|
|
44
44
|
def extend_object( hooked_instance )
|
|
45
45
|
|
|
46
|
-
super if defined?( super )
|
|
47
|
-
|
|
48
46
|
::Module::Cluster.hook_cluster_events( self, hooked_instance, :before_extend )
|
|
49
47
|
|
|
48
|
+
super if defined?( super )
|
|
49
|
+
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
##############
|