るりまサーチ

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

別のキーワード

  1. socket iff_802_1q_vlan
  2. openssl q
  3. openssl q=
  4. rsa q
  5. dsa q

検索結果

<< 1 2 3 ... > >>

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 が表す命令シーケンスの相対パスを返します。

...iseq = 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 =...
...RubyVM::InstructionSequence.compile_file('method.rb')
> iseq.path # => "method.rb"

@see RubyVM::InstructionSequence#absolute_path...

WEBrick::HTTPRequest#path -> String (21102.0)

リクエスト URI のパスを表す文字列を返します。

リクエスト URI のパスを表す文字列を返します。

Gem::RequirePathsBuilder#write_require_paths_file_if_needed(spec = @spec, gem_home = @gem_home) (18201.0)

必要であれば、'.require_paths' というファイルを Gem ごとに作成します。

...必要であれば、'.require_paths' というファイルを Gem ごとに作成します。...

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::Specification#require_paths=(paths) (12301.0)

この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ のリストをセットします。

...この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ
のリストをセットします。

@param paths この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ
のリ...

Gem::Specification#require_path -> String (12202.0)

Gem::Specification#require_paths の単数バージョンです。

...Gem::Specification#require_paths の単数バージョンです。

@see Gem::Specification#require_paths...

Gem::Specification#require_paths -> [String] (12201.0)

この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ のリストを返します。

...この Gem パッケージを使用した際に require するファイルが置かれているディレクトリ
のリストを返します。...

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

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

...iseq = RubyVM::InstructionSequence.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::InstructionSequence.compile_file('/tmp/method.rb')
> iseq.absolute_path # => "/tmp/method.rb"

@see RubyVM::InstructionSequence#path...

CGI::QueryExtension#path_info -> String (9118.0)

ENV['PATH_INFO'] を返します。

...ENV['PATH_INFO'] を返します。...

絞り込み条件を変える

<< 1 2 3 ... > >>