Merge branch 'harrylove/master'

This commit is contained in:
Marcel Molina 2009-04-28 15:02:27 -07:00
Родитель 5c20304e19 d8997822cf
Коммит 235bc186b6
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -127,7 +127,7 @@ end
module Kernel
def __method__(depth = 0)
caller[depth][/`([^']+)'/, 1]
end if RUBY_VERSION < '1.8.7'
end if RUBY_VERSION <= '1.8.7'
def __called_from__
caller[1][/`([^']+)'/, 1]

Просмотреть файл

@ -139,7 +139,7 @@ class KerneltExtensionsTest < Test::Unit::TestCase
assert_equal 'foo', b.foo
assert_equal 'bar', b.bar
end
end if RUBY_VERSION < '1.8.7'
end if RUBY_VERSION <= '1.8.7'
class ModuleExtensionsTest < Test::Unit::TestCase
class Foo