るりまサーチ

最速Rubyリファレンスマニュアル検索!
336件ヒット [1-100件を表示] (0.132秒)

別のキーワード

  1. string []=
  2. string []
  3. string slice
  4. string slice!
  5. string gsub!

検索結果

<< 1 2 3 ... > >>

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'] を返します。...
<< 1 2 3 ... > >>