Make method_missing public in the test framework for Ruby 1.9.

This commit is contained in:
Jim Weirich
2010-08-16 15:40:54 -04:00
parent ee9a03740b
commit c4549eb24b
2 changed files with 28 additions and 12 deletions

View File

@@ -36,6 +36,10 @@ class Object
self.send(method)
end
end
in_ruby_version("1.9") do
public :method_missing
end
end
module EdgeCase