1234件ヒット
[1-100件を表示]
(0.097秒)
ライブラリ
- ビルトイン (84)
-
cgi
/ core (24) - csv (12)
-
irb
/ cmd / load (24) - mkmf (60)
-
net
/ ftp (20) -
net
/ http (192) - openssl (12)
- pathname (278)
- rake (36)
-
rexml
/ document (12) - rss (24)
- rubygems (36)
-
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / unpack _ command (12) -
rubygems
/ custom _ require (12) -
rubygems
/ remote _ fetcher (36) -
rubygems
/ require _ paths _ builder (12) -
rubygems
/ source _ info _ cache (12) -
rubygems
/ specification (60) -
rubygems
/ uninstaller (12) - shell (24)
-
shell
/ command-processor (12) -
shell
/ filter (12) - socket (24)
- tempfile (12)
- uri (60)
-
webrick
/ httpauth / htdigest (12) -
webrick
/ httpauth / htgroup (12) -
webrick
/ httpauth / htpasswd (12) -
webrick
/ httprequest (36) -
webrick
/ httpserver (12)
クラス
- Addrinfo (12)
-
CGI
:: Cookie (12) - CSV (12)
-
Gem
:: Commands :: LockCommand (12) -
Gem
:: Commands :: UnpackCommand (12) -
Gem
:: RemoteFetcher (36) -
Gem
:: SourceInfoCache (12) -
Gem
:: Specification (60) -
Gem
:: Uninstaller (12) - IO (12)
-
IRB
:: ExtendCommand :: Load (12) -
IRB
:: ExtendCommand :: Source (12) -
Net
:: FTP (20) -
Net
:: HTTP (156) -
Net
:: HTTPGenericRequest (36) -
OpenSSL
:: X509 :: Store (12) - Pathname (278)
- Proc (12)
-
REXML
:: Attribute (12) -
RSS
:: Rss :: Channel :: Cloud (24) -
Rake
:: DefaultLoader (12) -
RubyVM
:: InstructionSequence (48) - Shell (24)
-
Shell
:: CommandProcessor (12) -
Shell
:: Filter (12) - Tempfile (12)
-
Thread
:: Backtrace :: Location (12) - UNIXSocket (12)
-
URI
:: Generic (48) -
URI
:: HTTP (12) -
WEBrick
:: Cookie (12) -
WEBrick
:: HTTPAuth :: Htdigest (12) -
WEBrick
:: HTTPAuth :: Htgroup (12) -
WEBrick
:: HTTPAuth :: Htpasswd (12) -
WEBrick
:: HTTPRequest (36) -
WEBrick
:: HTTPServer :: MountTable (12)
モジュール
-
CGI
:: QueryExtension (24) - FileUtils (12)
-
Gem
:: QuickLoader (24) -
Gem
:: RequirePathsBuilder (12) - Kernel (84)
-
Rake
:: TaskManager (12)
キーワード
- absolute? (12)
-
absolute
_ path (24) - ascend (12)
- basename (12)
-
body
_ stream (12) -
body
_ stream= (12) - children (12)
- chown (12)
-
create
_ makefile (12) -
create
_ rule (12) - descend (12)
-
dir
_ config (12) -
each
_ child (24) -
each
_ entry (3) -
each
_ line (12) - executable? (12)
-
executable
_ real? (12) - execute (24)
-
fetch
_ path (12) - find (23)
-
find
_ executable (12) -
find
_ library (24) - flush (48)
-
full
_ gem _ path (12) - gem (12)
-
get
_ file _ uri _ path (12) -
get
_ path (12) - hierarchical? (12)
- inspect (12)
- lchown (12)
- load (12)
- mlsd (20)
- mountpoint? (12)
-
open
_ uri _ or _ path (12) - path= (48)
-
path
_ info (24) -
path
_ info= (12) -
path
_ ok? (12) -
path
_ translated (12) -
push
_ all _ highest _ version _ gems _ on _ load _ path (12) -
push
_ gem _ version _ on _ load _ path (12) - pushd (6)
- pushdir (6)
- put (12)
- put2 (24)
-
request
_ get (24) -
request
_ head (24) -
request
_ post (24) -
request
_ put (24) -
request
_ uri (12) - require (12)
-
require
_ path (12) -
require
_ path= (12) -
require
_ paths (12) -
require
_ paths= (12) - scan (12)
- select (12)
-
send
_ request (12) -
set
_ default _ paths (12) - setuid? (12)
-
source
_ location (12) -
spec
_ path (12) -
split
_ all (12) - sub (24)
-
sub
_ ext (12) -
to
_ a (12) - truncate (42)
-
try
_ file (12) -
unix
_ path (12) - unlink (42)
- unlock (12)
- utime (12)
-
write
_ require _ paths _ file _ if _ needed (12) - xpath (12)
検索結果
先頭5件
-
Gem
:: RequirePathsBuilder # write _ require _ paths _ file _ if _ needed(spec = @spec , gem _ home = @gem _ home) (21201.0) -
必要であれば、'.require_paths' というファイルを Gem ごとに作成します。
...必要であれば、'.require_paths' というファイルを Gem ごとに作成します。... -
URI
:: Generic # path -> String | nil (21148.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 #=> nil
p URI......('ftp://example.com/foo').path #=> 'foo'
p URI('ftp://example.com/%2Ffoo').path #=> '/foo'... -
Net
:: HTTPGenericRequest # path -> String (21124.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"
//}... -
RubyVM
:: InstructionSequence # path -> String (21120.0) -
self が表す命令シーケンスの相対パスを返します。
...= RubyVM::InstructionSequence.compile('num = 1 + 2')
# => <RubyVM::InstructionSequence:<compiled>@<compiled>>
iseq.path
# => "<compiled>"
例2: RubyVM::InstructionSequence.compile_file を使用した場合
# /tmp/method.rb
def hello
puts "hello, world"
end
# irb
> iseq = Ruby......VM::InstructionSequence.compile_file('method.rb')
> iseq.path # => "method.rb"
@see RubyVM::InstructionSequence#absolute_path... -
UNIXSocket
# path -> String (21108.0) -
UNIX ソケットのパスを返します。
...UNIX ソケットのパスを返します。
クライアント側はパスを持たないため空文字列となります。
例:
require 'socket'
UNIXServer.open("/tmp/s") {|serv|
p serv.path #=> "/tmp/s"
}... -
RSS
:: Rss :: Channel :: Cloud # path (21103.0) -
@todo
@todo -
WEBrick
:: HTTPRequest # path -> String (21102.0) -
リクエスト URI のパスを表す文字列を返します。
...リクエスト URI のパスを表す文字列を返します。... -
Gem
:: Specification # require _ path=(path) (12309.0) -
Gem::Specification#require_paths= の単数バージョンです。
...Gem::Specification#require_paths= の単数バージョンです。
@param path この Gem パッケージを使用した際に require するファイルが置かれているディレクトリを指定します。
@see Gem::Specification#require_paths=... -
Gem
:: RemoteFetcher # get _ file _ uri _ path(uri) -> String (12302.0) -
与えられた URI から "file://" を取り除いた文字列を返します。
...与えられた URI から "file://" を取り除いた文字列を返します。
@param uri URI を表す文字列を指定します。...