* ext/pathname/pathname.c (path_hash): Pathname#hash translated
from pathname.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
47fd9eb6e1
commit
be2f3c58e6
@ -1,3 +1,8 @@
|
|||||||
|
Fri Jul 30 21:43:55 2010 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* ext/pathname/pathname.c (path_hash): Pathname#hash translated
|
||||||
|
from pathname.rb.
|
||||||
|
|
||||||
Fri Jul 30 12:42:02 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Jul 30 12:42:02 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* lib/net/imap.rb (example): use IO#noecho to read password if
|
* lib/net/imap.rb (example): use IO#noecho to read password if
|
||||||
@ -30,7 +35,7 @@ Thu Jul 29 22:28:35 2010 Tanaka Akira <akr@fsij.org>
|
|||||||
|
|
||||||
* ext/pathname/pathname.c (path_cmp): Pathname#<=> translated
|
* ext/pathname/pathname.c (path_cmp): Pathname#<=> translated
|
||||||
from pathname.rb.
|
from pathname.rb.
|
||||||
|
|
||||||
Thu Jul 29 06:51:30 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Thu Jul 29 06:51:30 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* common.mk (EXT_SRCS): add ext/json/parser/parser.c.
|
* common.mk (EXT_SRCS): add ext/json/parser/parser.c.
|
||||||
|
@ -31,10 +31,6 @@ class Pathname
|
|||||||
|
|
||||||
# :startdoc:
|
# :startdoc:
|
||||||
|
|
||||||
def hash # :nodoc:
|
|
||||||
@path.hash
|
|
||||||
end
|
|
||||||
|
|
||||||
# Return the path as a String.
|
# Return the path as a String.
|
||||||
def to_s
|
def to_s
|
||||||
@path.dup
|
@path.dup
|
||||||
|
@ -119,6 +119,13 @@ path_cmp(VALUE self, VALUE other)
|
|||||||
return INT2FIX(0);
|
return INT2FIX(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* :nodoc: */
|
||||||
|
static VALUE
|
||||||
|
path_hash(VALUE self)
|
||||||
|
{
|
||||||
|
return INT2FIX(rb_str_hash(get_strpath(self)));
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* == Pathname
|
* == Pathname
|
||||||
*
|
*
|
||||||
@ -311,4 +318,5 @@ Init_pathname()
|
|||||||
rb_define_method(rb_cPathname, "===", path_eq, 1);
|
rb_define_method(rb_cPathname, "===", path_eq, 1);
|
||||||
rb_define_method(rb_cPathname, "eql?", path_eq, 1);
|
rb_define_method(rb_cPathname, "eql?", path_eq, 1);
|
||||||
rb_define_method(rb_cPathname, "<=>", path_cmp, 1);
|
rb_define_method(rb_cPathname, "<=>", path_cmp, 1);
|
||||||
|
rb_define_method(rb_cPathname, "hash", path_hash, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user