aboutsummaryrefslogtreecommitdiffstats
path: root/ext/pathname/lib
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-21 15:01:11 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-21 15:01:11 +0000
commita5a51abfc5dbe8f29fee38ba34a275063d01b548 (patch)
tree076492299d0d8cad9512af6b43833238c4656464 /ext/pathname/lib
parente7381db962823f3d6f6e746b5bfedefd897d32d0 (diff)
downloadruby-a5a51abfc5dbe8f29fee38ba34a275063d01b548.tar.gz
* ext/pathname/pathname.c (path_f_pathname): Pathname() translated
from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pathname/lib')
-rw-r--r--ext/pathname/lib/pathname.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/ext/pathname/lib/pathname.rb b/ext/pathname/lib/pathname.rb
index f6e06f2092..224c869f67 100644
--- a/ext/pathname/lib/pathname.rb
+++ b/ext/pathname/lib/pathname.rb
@@ -525,13 +525,3 @@ class Pathname # * FileUtils *
end
end
-
-module Kernel
- # create a pathname object.
- #
- # This method is available since 1.8.5.
- def Pathname(path) # :doc:
- Pathname.new(path)
- end
- private :Pathname
-end