diff options
author | Sam Stephenson <sam@37signals.com> | 2005-11-07 02:26:20 +0000 |
---|---|---|
committer | Sam Stephenson <sam@37signals.com> | 2005-11-07 02:26:20 +0000 |
commit | 5feb3124d431b69e9c4921857289593a655f2e86 (patch) | |
tree | af812fbd5cc66e1abfe8da2f0ebb12513404bb82 /activesupport/lib | |
parent | 24064910d05d801eb77c5170aca2bbc2b3d11ccf (diff) | |
download | rails-5feb3124d431b69e9c4921857289593a655f2e86.tar.gz rails-5feb3124d431b69e9c4921857289593a655f2e86.tar.bz2 rails-5feb3124d431b69e9c4921857289593a655f2e86.zip |
Define kernel.rb methods in "class Object" instead of "module Kernel" to work around a Windows peculiarity
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2902 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/kernel.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/kernel.rb b/activesupport/lib/active_support/core_ext/kernel.rb index 310bba0904..b687af03f6 100644 --- a/activesupport/lib/active_support/core_ext/kernel.rb +++ b/activesupport/lib/active_support/core_ext/kernel.rb @@ -1,4 +1,4 @@ -module Kernel +class Object # A Ruby-ized realization of the K combinator, courtesy of Mikael Brockman. # # def foo |