336件ヒット
[1-100件を表示]
(0.132秒)
ライブラリ
- ビルトイン (108)
-
cgi
/ core (24) -
irb
/ context (12) -
json
/ add / exception (12) - mkmf (12)
-
net
/ http (24) - openssl (12)
- optparse (12)
- pathname (12)
- rake (12)
-
rubygems
/ commands / unpack _ command (12) -
rubygems
/ config _ file (12) -
rubygems
/ specification (48) - uri (12)
クラス
- Exception (24)
-
Gem
:: Commands :: UnpackCommand (12) -
Gem
:: ConfigFile (12) -
Gem
:: Specification (48) -
IRB
:: Context (12) -
Net
:: HTTPResponse (24) -
OpenSSL
:: SSL :: SSLContext (12) - OptionParser (12)
- Pathname (12)
- Proc (12)
-
RDoc
:: Options (12) -
Rake
:: Application (12) -
RubyVM
:: InstructionSequence (36) -
Thread
:: Backtrace :: Location (48) -
URI
:: Generic (12)
モジュール
-
CGI
:: QueryExtension (24) - Kernel (12)
キーワード
-
absolute
_ path (24) - binread (12)
-
ca
_ path (12) -
dir
_ config (12) -
full
_ gem _ path (12) -
get
_ path (12) - inspect (24)
-
installation
_ path (12) -
irb
_ path (12) -
original
_ dir (12) -
path
_ info (12) -
path
_ translated (12) -
program
_ name (12) -
read
_ body (24) -
require
_ path (12) -
require
_ paths (12) - select (12)
-
set
_ backtrace (12) -
source
_ location (12) -
static
_ path (12) -
to
_ json (12) -
to
_ s (12)
検索結果
先頭5件
-
Thread
:: Backtrace :: Location # path -> String (30315.0) -
self が表すフレームのファイル名を返します。
...self が表すフレームのファイル名を返します。
例: Thread::Backtrace::Location の例1を用いた例
//emlist[][ruby]{
loc = c(0..1).first
loc.path # => "caller_locations.rb"
//}
@see Thread::Backtrace::Location#absolute_path... -
RubyVM
:: InstructionSequence # path -> String (27321.0) -
self が表す命令シーケンスの相対パスを返します。
...structionSequence.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 = RubyVM::Instruct......ionSequence.compile_file('method.rb')
> iseq.path # => "method.rb"
@see RubyVM::InstructionSequence#absolute_path... -
Gem
:: ConfigFile # path -> String (27303.0) -
Gem を探索するパスを返します。
Gem を探索するパスを返します。 -
Gem
:: Specification # installation _ path -> String (24403.0) -
この Gem パッケージのインストール先のパスを返します。
この Gem パッケージのインストール先のパスを返します。 -
Thread
:: Backtrace :: Location # absolute _ path -> String (18333.0) -
self が表すフレームの絶対パスを返します。
...ist[例][ruby]{
# foo.rb
class Foo
attr_accessor :locations
def initialize(skip)
@locations = caller_locations(skip)
end
end
Foo.new(0..2).locations.map do |call|
puts call.absolute_path
end
# => /path/to/foo.rb
# /path/to/foo.rb
# /path/to/foo.rb
//}
@see Thread::Backtrace::Location#......path... -
CGI
:: QueryExtension # path _ translated -> String (18319.0) -
ENV['PATH_TRANSLATED'] を返します。
...ENV['PATH_TRANSLATED'] を返します。... -
RDoc
:: Options # static _ path -> [String] (18303.0) -
コマンドライン引数の --copy-files オプションで指定したパスの一覧を返し ます。
コマンドライン引数の --copy-files オプションで指定したパスの一覧を返し
ます。 -
RubyVM
:: InstructionSequence # absolute _ path -> String | nil (15321.0) -
self が表す命令シーケンスの絶対パスを返します。
...structionSequence.compile('num = 1 + 2')
# => <RubyVM::InstructionSequence:<compiled>@<compiled>>
iseq.absolute_path
# => nil
例2: RubyVM::InstructionSequence.compile_file を使用した場合
# /tmp/method.rb
def hello
puts "hello, world"
end
# irb
> iseq = RubyVM::Instruct......ionSequence.compile_file('/tmp/method.rb')
> iseq.absolute_path # => "/tmp/method.rb"
@see RubyVM::InstructionSequence#path... -
CGI
:: QueryExtension # path _ info -> String (15319.0) -
ENV['PATH_INFO'] を返します。
...ENV['PATH_INFO'] を返します。...