るりまサーチ

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

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. fileutils compare_file
  4. file path
  5. file ctime

ライブラリ

検索結果

RubyVM::InstructionSequence#path -> String (18144.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...

RubyVM::InstructionSequence#absolute_path -> String | nil (6144.0)

self が表す命令シーケンスの絶対パスを返します。

...ompiled>>
iseq.absolute_path
# => nil

例2: RubyVM::InstructionSequence.compile_file を使用した場合

# /tmp/method.rb
def hello
puts "hello, world"
end

# irb
> iseq = RubyVM::InstructionSequence.compile_file('/tmp/method.rb')
> iseq.absolute_path # => "/tmp/method.rb"

@...
...see RubyVM::InstructionSequence#path...