summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-method/mrblib/unbound_method.rb
diff options
context:
space:
mode:
Diffstat (limited to 'mrbgems/mruby-method/mrblib/unbound_method.rb')
-rw-r--r--mrbgems/mruby-method/mrblib/unbound_method.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/mrbgems/mruby-method/mrblib/unbound_method.rb b/mrbgems/mruby-method/mrblib/unbound_method.rb
new file mode 100644
index 000000000..1d3acf3fa
--- /dev/null
+++ b/mrbgems/mruby-method/mrblib/unbound_method.rb
@@ -0,0 +1,9 @@
+class UnboundMethod
+ def owner
+ @owner
+ end
+
+ def name
+ @name
+ end
+end