ruby-dev (Japanese) list archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-dev:45386] [ruby-trunk - Feature #2324] Dir instance methods for relative path
       [not found] <redmine.issue-2324.20091102174830@ruby-lang.org>
@ 2012-03-18  5:44 ` nahi
  2012-10-25 12:54 ` [ruby-dev:46270] " yhara (Yutaka HARA)
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: nahi @ 2012-03-18  5:44 UTC (permalink / raw
  To: ruby developers list


Issue #2324 has been updated by nahi.

Description updated
Assignee set to nobu


----------------------------------------
Feature #2324: Dir instance methods for relative path
https://bugs.ruby-lang.org/issues/2324#change-24697

Author: nobu
Status: Open
Priority: Normal
Assignee: nobu
Category: core
Target version: 2.0.0


=begin
 なかだです。
 
 http://www.ipa.go.jp/security/fy20/reports/tech1-tg/2_05.html を
 みて思い出したんですが、相対パスを使うDirのインスタンスメソッド
 はどうでしょうか。実装はmvmブランチにあります。
 
 $ ./ruby -v -e 'p Dir.open("ext"){|d|d.open("extmk.rb"){|f|f.gets}}'
 ruby 1.9.1 (2008-12-25 mvm 20976) [i686-linux]
 "#! /usr/local/bin/ruby\n"
 
 $ mkdir tmp
 $ touch tmp/x tmp/y
 $ ./ruby -e 'p Dir.open("tmp"){|d|d.unlink("x")}'
 0
 $ ls tmp/
 y
 
 -- 
 --- 僕の前にBugはない。
 --- 僕の後ろにBugはできる。
     中田 伸悦
=end



-- 
http://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-dev:46270] [ruby-trunk - Feature #2324] Dir instance methods for relative path
       [not found] <redmine.issue-2324.20091102174830@ruby-lang.org>
  2012-03-18  5:44 ` [ruby-dev:45386] [ruby-trunk - Feature #2324] Dir instance methods for relative path nahi
@ 2012-10-25 12:54 ` yhara (Yutaka HARA)
  2014-08-28  1:18 ` [ruby-dev:48491] " nobu
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: yhara (Yutaka HARA) @ 2012-10-25 12:54 UTC (permalink / raw
  To: ruby developers list


Issue #2324 has been updated by yhara (Yutaka HARA).

Target version changed from 2.0.0 to next minor


----------------------------------------
Feature #2324: Dir instance methods for relative path
https://bugs.ruby-lang.org/issues/2324#change-31570

Author: nobu (Nobuyoshi Nakada)
Status: Assigned
Priority: Normal
Assignee: nobu (Nobuyoshi Nakada)
Category: core
Target version: next minor


=begin
 なかだです。
 
 http://www.ipa.go.jp/security/fy20/reports/tech1-tg/2_05.html を
 みて思い出したんですが、相対パスを使うDirのインスタンスメソッド
 はどうでしょうか。実装はmvmブランチにあります。
 
 $ ./ruby -v -e 'p Dir.open("ext"){|d|d.open("extmk.rb"){|f|f.gets}}'
 ruby 1.9.1 (2008-12-25 mvm 20976) [i686-linux]
 "#! /usr/local/bin/ruby\n"
 
 $ mkdir tmp
 $ touch tmp/x tmp/y
 $ ./ruby -e 'p Dir.open("tmp"){|d|d.unlink("x")}'
 0
 $ ls tmp/
 y
 
 -- 
 --- 僕の前にBugはない。
 --- 僕の後ろにBugはできる。
     中田 伸悦
=end



-- 
http://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-dev:48491] [ruby-trunk - Feature #2324] Dir instance methods for relative path
       [not found] <redmine.issue-2324.20091102174830@ruby-lang.org>
  2012-03-18  5:44 ` [ruby-dev:45386] [ruby-trunk - Feature #2324] Dir instance methods for relative path nahi
  2012-10-25 12:54 ` [ruby-dev:46270] " yhara (Yutaka HARA)
@ 2014-08-28  1:18 ` nobu
  2014-08-28  1:21 ` [ruby-dev:48492] " nobu
  2014-08-28 23:34 ` [ruby-dev:48493] " nobu
  4 siblings, 0 replies; 5+ messages in thread
From: nobu @ 2014-08-28  1:18 UTC (permalink / raw
  To: ruby-dev

Issue #2324 has been updated by Nobuyoshi Nakada.

Description updated

----------------------------------------
Feature #2324: Dir instance methods for relative path
https://bugs.ruby-lang.org/issues/2324#change-48516

* Author: Nobuyoshi Nakada
* Status: Assigned
* Priority: Normal
* Assignee: Nobuyoshi Nakada
* Category: core
* Target version: next minor
----------------------------------------
なかだです。

http://www.ipa.go.jp/security/fy20/reports/tech1-tg/2_05.html を
みて思い出したんですが、相対パスを使う`Dir`のインスタンスメソッド
はどうでしょうか。実装はmvmブランチにあります。

~~~
$ ./ruby -v -e 'p Dir.open("ext"){|d|d.open("extmk.rb"){|f|f.gets}}'
ruby 1.9.1 (2008-12-25 mvm 20976) [i686-linux]
"#! /usr/local/bin/ruby\n"

$ mkdir tmp
$ touch tmp/x tmp/y
$ ./ruby -e 'p Dir.open("tmp"){|d|d.unlink("x")}'
0
$ ls tmp/
y
~~~

-- 
--- 僕の前にBugはない。
--- 僕の後ろにBugはできる。
    中田 伸悦




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-dev:48492] [ruby-trunk - Feature #2324] Dir instance methods for relative path
       [not found] <redmine.issue-2324.20091102174830@ruby-lang.org>
                   ` (2 preceding siblings ...)
  2014-08-28  1:18 ` [ruby-dev:48491] " nobu
@ 2014-08-28  1:21 ` nobu
  2014-08-28 23:34 ` [ruby-dev:48493] " nobu
  4 siblings, 0 replies; 5+ messages in thread
From: nobu @ 2014-08-28  1:21 UTC (permalink / raw
  To: ruby-dev

Issue #2324 has been updated by Nobuyoshi Nakada.


Related PR: [GH-706]

----------------------------------------
Feature #2324: Dir instance methods for relative path
https://bugs.ruby-lang.org/issues/2324#change-48517

* Author: Nobuyoshi Nakada
* Status: Assigned
* Priority: Normal
* Assignee: Nobuyoshi Nakada
* Category: core
* Target version: next minor
----------------------------------------
なかだです。

http://www.ipa.go.jp/security/fy20/reports/tech1-tg/2_05.html を
みて思い出したんですが、相対パスを使う`Dir`のインスタンスメソッド
はどうでしょうか。実装はmvmブランチにあります。

~~~
$ ./ruby -v -e 'p Dir.open("ext"){|d|d.open("extmk.rb"){|f|f.gets}}'
ruby 1.9.1 (2008-12-25 mvm 20976) [i686-linux]
"#! /usr/local/bin/ruby\n"

$ mkdir tmp
$ touch tmp/x tmp/y
$ ./ruby -e 'p Dir.open("tmp"){|d|d.unlink("x")}'
0
$ ls tmp/
y
~~~

-- 
--- 僕の前にBugはない。
--- 僕の後ろにBugはできる。
    中田 伸悦




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [ruby-dev:48493] [ruby-trunk - Feature #2324] Dir instance methods for relative path
       [not found] <redmine.issue-2324.20091102174830@ruby-lang.org>
                   ` (3 preceding siblings ...)
  2014-08-28  1:21 ` [ruby-dev:48492] " nobu
@ 2014-08-28 23:34 ` nobu
  4 siblings, 0 replies; 5+ messages in thread
From: nobu @ 2014-08-28 23:34 UTC (permalink / raw
  To: ruby-dev

Issue #2324 has been updated by Nobuyoshi Nakada.

Related to Feature #10181: New method File.openat() added

----------------------------------------
Feature #2324: Dir instance methods for relative path
https://bugs.ruby-lang.org/issues/2324#change-48535

* Author: Nobuyoshi Nakada
* Status: Assigned
* Priority: Normal
* Assignee: Nobuyoshi Nakada
* Category: core
* Target version: next minor
----------------------------------------
なかだです。

http://www.ipa.go.jp/security/fy20/reports/tech1-tg/2_05.html を
みて思い出したんですが、相対パスを使う`Dir`のインスタンスメソッド
はどうでしょうか。実装はmvmブランチにあります。

~~~
$ ./ruby -v -e 'p Dir.open("ext"){|d|d.open("extmk.rb"){|f|f.gets}}'
ruby 1.9.1 (2008-12-25 mvm 20976) [i686-linux]
"#! /usr/local/bin/ruby\n"

$ mkdir tmp
$ touch tmp/x tmp/y
$ ./ruby -e 'p Dir.open("tmp"){|d|d.unlink("x")}'
0
$ ls tmp/
y
~~~

-- 
--- 僕の前にBugはない。
--- 僕の後ろにBugはできる。
    中田 伸悦




-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-08-28 23:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <redmine.issue-2324.20091102174830@ruby-lang.org>
2012-03-18  5:44 ` [ruby-dev:45386] [ruby-trunk - Feature #2324] Dir instance methods for relative path nahi
2012-10-25 12:54 ` [ruby-dev:46270] " yhara (Yutaka HARA)
2014-08-28  1:18 ` [ruby-dev:48491] " nobu
2014-08-28  1:21 ` [ruby-dev:48492] " nobu
2014-08-28 23:34 ` [ruby-dev:48493] " nobu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).