1099件ヒット
[1-100件を表示]
(0.049秒)
ライブラリ
- ビルトイン (225)
-
cgi
/ core (24) - csv (12)
-
irb
/ context (12) -
json
/ add / exception (12) - logger (12)
- mkmf (48)
-
net
/ ftp (10) -
net
/ http (48) - openssl (12)
- optparse (12)
- pathname (132)
- pstore (12)
- rake (72)
-
rake
/ packagetask (12) -
rexml
/ document (36) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / unpack _ command (12) -
rubygems
/ config _ file (12) -
rubygems
/ format (12) -
rubygems
/ gem _ path _ searcher (24) -
rubygems
/ old _ format (12) -
rubygems
/ remote _ fetcher (36) -
rubygems
/ source _ info _ cache (12) -
rubygems
/ specification (48) -
rubygems
/ validator (12) - shell (18)
-
shell
/ command-processor (18) -
shell
/ filter (12) - socket (24)
- tempfile (12)
- uri (36)
-
webrick
/ httprequest (24) - win32ole (12)
- zlib (12)
クラス
-
ARGF
. class (24) - Addrinfo (12)
-
CGI
:: Cookie (12) - CSV (12)
- Dir (24)
- Exception (24)
- File (24)
-
Gem
:: Commands :: LockCommand (12) -
Gem
:: Commands :: UnpackCommand (12) -
Gem
:: ConfigFile (12) -
Gem
:: Format (12) -
Gem
:: GemPathSearcher (24) -
Gem
:: OldFormat (12) -
Gem
:: RemoteFetcher (36) -
Gem
:: SourceInfoCache (12) -
Gem
:: Specification (48) -
Gem
:: Validator (12) - IO (6)
-
IRB
:: Context (12) - LoadError (12)
- Logger (12)
-
Net
:: FTP :: MLSxEntry (10) -
Net
:: HTTP (12) -
Net
:: HTTPGenericRequest (12) -
Net
:: HTTPResponse (24) -
OpenSSL
:: SSL :: SSLContext (12) - OptionParser (12)
- PStore (12)
- Pathname (132)
- Proc (12)
-
RDoc
:: Options (12) -
REXML
:: Attribute (12) -
REXML
:: Element (24) -
Rake
:: Application (12) -
Rake
:: FileList (12) -
Rake
:: PackageTask (12) -
RubyVM
:: InstructionSequence (36) - Shell (18)
-
Shell
:: CommandProcessor (18) -
Shell
:: Filter (12) - String (48)
- SyntaxError (3)
- Tempfile (12)
-
Thread
:: Backtrace :: Location (48) - TracePoint (24)
- UNIXSocket (12)
-
URI
:: Generic (24) -
URI
:: HTTP (12) -
WEBrick
:: Cookie (24) -
WEBrick
:: HTTPRequest (24) -
WIN32OLE
_ TYPELIB (12) -
Zlib
:: GzipFile (12)
モジュール
-
CGI
:: QueryExtension (24) - Kernel (48)
キーワード
-
absolute
_ path (24) - binread (12)
- binwrite (12)
-
ca
_ path (24) -
dir
_ config (12) - extname (12)
-
fetch
_ path (12) - filename (12)
-
find
_ executable (12) - formatter (12)
- ftype (12)
-
full
_ gem _ path (12) -
gem
_ path (24) -
get
_ file _ uri _ path (12) -
get
_ path (12) - inspect (36)
-
installation
_ path (12) -
irb
_ path (12) -
lib
_ dirs _ for (12) - libpathflag (12)
-
link
_ command (12) -
matching
_ files (12) -
open
_ uri _ or _ path (12) -
original
_ dir (12) -
package
_ dir _ path (12) - path= (12)
-
path
_ info (24) -
path
_ translated (12) - pathmap (24)
-
pathmap
_ explode (12) -
pathmap
_ partial (12) -
pathmap
_ replace (12) - pathname (10)
-
program
_ name (12) - read (12)
-
read
_ body (24) - readlines (12)
- readlink (18)
-
remove
_ leading _ dot _ dir (12) -
request
_ uri (12) -
require
_ path (12) -
require
_ paths (12) - select (12)
-
set
_ backtrace (12) -
source
_ location (12) -
spec
_ path (12) - split (18)
-
static
_ path (12) - sub (24)
- text (12)
-
to
_ json (12) -
to
_ path (39) -
to
_ s (24) -
try
_ file (12) -
unix
_ path (12) - write (12)
- xpath (24)
検索結果
先頭5件
-
String
# pathmap(spec = nil) { . . . } -> String (27214.0) -
与えられた書式指定文字列に応じてパス(自身)を変換します。
...自身を表します。
%d は数値のプレフィクスを取ることができます。
例:
'a/b/c/d/file.txt'.pathmap("%2d") # => 'a/b'
'a/b/c/d/file.txt'.pathmap("%-2d") # => 'c/d'
また、%d, %p, %f, %n, %x, %X には単純な文字列置換を行うための
置換パターン......A.java".pathmap("%{^src,bin}X.class")
#=> "bin/org/onestepback/proj/A.class"
置換文字列に '*' を指定した場合は、置換文字列を計算するためにブロックを評価します。
例:
"/path/to/file.TXT".pathmap("%X%{.*,*}x") { |ext| ext.downcase }
#=> "/path/to/fil... -
String
# pathmap _ partial(n) -> String (27202.0) -
自身から与えられた階層分パスを抜粋します。
自身から与えられた階層分パスを抜粋します。
与えられた数値が正である場合は左から、負である場合は右から抜粋します。 -
String
# pathmap _ replace(patterns) { . . . } -> String (27202.0) -
与えられたパスを前もって置き換えます。
与えられたパスを前もって置き換えます。
@param patterns 'pat1,rep1;pat2,rep2;...' のような形式で置換パターンを指定します。 -
String
# pathmap _ explode -> Array (27123.0) -
自身をパスを表す部分ごとに分解して配列にして返します。 String#pathmap で利用される protected メソッドです。
...自身をパスを表す部分ごとに分解して配列にして返します。
String#pathmap で利用される protected メソッドです。
@see String#pathmap... -
URI
:: Generic # path -> String | nil (18249.0) -
自身の path を文字列で返します。設定されていない場合は nil を返します。
...自身の path を文字列で返します。設定されていない場合は nil を返します。
require 'uri'
p URI.parse('http://example.com/hoge').path #=> "/hoge"
p URI.parse('http://example.com').path #=> ""
p URI.parse('mailto:nospam@localhost').path #=> n......il
p URI('ftp://example.com/foo').path #=> 'foo'
p URI('ftp://example.com/%2Ffoo').path #=> '/foo'... -
IO
# path -> String | nil (18229.0) -
IO に関連付けられたパスを返します。IO がパスに関連付けられていない場合は nil を返します。
...が返すパスがファイルシステム上に存在することは保証されていません。
//emlist[例][ruby]{
p STDIN.path # => "<STDIN>"
p IO.new(IO.sysopen("/")).path # => "/"
p IO.new(IO.sysopen("/"), path: "foo").path # => "foo"
//}... -
CSV
# path -> String (18225.0) -
IO#path に委譲します。
...IO#path に委譲します。
@see IO#path... -
Net
:: HTTPGenericRequest # path -> String (18225.0) -
リクエストする path を文字列で返します。
...リクエストする path を文字列で返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.path # => "/index.html"
//}... -
File
# path -> String (18223.0) -
オープン時に使用したパスを文字列で返します。
...作成されていたりする場合です。
//emlist[例][ruby]{
File.open("testfile") {|f| f.path } #=> "testfile"
File.open("/tmp/../tmp/xxx", "w") {|f| f.path } #=> "/tmp/../tmp/xxx"
File.open("/tmp", File::RDWR | File::TMPFILE){|f| f.path } #=> "/tmp"
//}......発生します。
//emlist[例][ruby]{
File.open("testfile") {|f| f.path } #=> "testfile"
File.open("/tmp/../tmp/xxx", "w") {|f| f.path } #=> "/tmp/../tmp/xxx"
File.open("/tmp", File::RDWR | File::TMPFILE){|f| f.path } # IOError: File is unnamed (TMPFILE?)
//}... -
RubyVM
:: InstructionSequence # path -> String (18221.0) -
self が表す命令シーケンスの相対パスを返します。
...ompiled>@<compiled>>
iseq.path
# => "<compiled>"
例2: RubyVM::InstructionSequence.compile_file を使用した場合
# /tmp/method.rb
def hello
puts "hello, world"
end
# irb
> iseq = RubyVM::InstructionSequence.compile_file('method.rb')
> iseq.path # => "method.rb"
@see Ruby......VM::InstructionSequence#absolute_path...