336件ヒット
[1-100件を表示]
(0.103秒)
ライブラリ
- ビルトイン (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件
-
RubyVM
:: InstructionSequence # path -> String (21221.0) -
self が表す命令シーケンスの相対パスを返します。
...tionSequence.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::InstructionSe......quence.compile_file('method.rb')
> iseq.path # => "method.rb"
@see RubyVM::InstructionSequence#absolute_path... -
Thread
:: Backtrace :: Location # path -> String (21215.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... -
Gem
:: ConfigFile # path -> String (21203.0) -
Gem を探索するパスを返します。
Gem を探索するパスを返します。 -
Gem
:: Specification # installation _ path -> String (15303.0) -
この Gem パッケージのインストール先のパスを返します。
この Gem パッケージのインストール先のパスを返します。 -
Thread
:: Backtrace :: Location # absolute _ path -> String (9233.0) -
self が表すフレームの絶対パスを返します。
...][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... -
RubyVM
:: InstructionSequence # absolute _ path -> String | nil (9221.0) -
self が表す命令シーケンスの絶対パスを返します。
...tionSequence.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::InstructionSe......quence.compile_file('/tmp/method.rb')
> iseq.absolute_path # => "/tmp/method.rb"
@see RubyVM::InstructionSequence#path... -
CGI
:: QueryExtension # path _ info -> String (9219.0) -
ENV['PATH_INFO'] を返します。
...ENV['PATH_INFO'] を返します。... -
CGI
:: QueryExtension # path _ translated -> String (9219.0) -
ENV['PATH_TRANSLATED'] を返します。
...ENV['PATH_TRANSLATED'] を返します。... -
Exception
# to _ json(*args) -> String (9214.0) -
自身を JSON 形式の文字列に変換して返します。
...身を JSON 形式の文字列に変換して返します。
内部的にはハッシュにデータをセットしてから JSON::Generator::GeneratorMethods::Hash#to_json を呼び出しています。
@param args 引数はそのまま JSON::Generator::GeneratorMethods::Hash#to_json に渡され......ます。
//emlist[例][ruby]{
require "json/add/core"
begin
0/0
rescue => e
e.to_json # => "{\"json_class\":\"ZeroDivisionError\",\"m\":\"divided by 0\",\"b\":[\"/path/to/test.rb:4:in `/'\",\"/path/to/test.rb:4:in `<main>'\"]}"
end
//}
@see JSON::Generator::GeneratorMethods::Hash#to_json...