summaryrefslogtreecommitdiffhomepage
path: root/mrblib
diff options
context:
space:
mode:
Diffstat (limited to 'mrblib')
-rw-r--r--mrblib/00class.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/mrblib/00class.rb b/mrblib/00class.rb
index f3762e8d0..1a2d833c8 100644
--- a/mrblib/00class.rb
+++ b/mrblib/00class.rb
@@ -15,6 +15,7 @@ class Module
m.append_features(self)
m.included(self)
end
+ self
end
def prepend(*args)
@@ -22,5 +23,6 @@ class Module
m.prepend_features(self)
m.prepended(self)
end
+ self
end
end