るりまサーチ

最速Rubyリファレンスマニュアル検索!
114件ヒット [1-100件を表示] (0.078秒)
トップページ > クエリ:IO[x] > クエリ:io[x] > クエリ:string[x] > クエリ:section[x]

別のキーワード

  1. io popen
  2. io pipe
  3. io readlines
  4. io each
  5. io each_line

ライブラリ

キーワード

検索結果

<< 1 2 > >>

OpenSSL::Config#section(sec) -> {String => String} (21511.0)

指定したセクションの設定情報をハッシュで返します。

...指定したセクションの設定情報をハッシュで返します。

ハッシュのキーが設定情報のキー、ハッシュの値が対応する情報となります。

section
は obsolete です。[] を使ってください。

@param sec セクションを表す文字列...

OpenSSL::Config#sections -> [String] (18401.0)

オブジェクトに含まれる全てのセクション名の配列を返します。

オブジェクトに含まれる全てのセクション名の配列を返します。

RDoc::Context::Section#comment -> String | nil (9117.0)

section のコメントを返します。

...
section
のコメントを返します。...

RDoc::Context::Section#sequence -> String (9117.0)

section のシーケンス番号を文字列で返します。

...
section
のシーケンス番号を文字列で返します。

リンクを作成する時に使われます。...

RDoc::Context::Section#title -> String | nil (9117.0)

section のタイトルを返します。

...
section
のタイトルを返します。...

絞り込み条件を変える

RDoc::Context::Section#inspect -> String (9101.0)

自身の情報を人間に読みやすい文字列にして返します。

自身の情報を人間に読みやすい文字列にして返します。

OpenSSL::Config#add_value(section, name, value) -> String (430.0)

section で指定したセクションにある name というキーの 情報を value に変更します。

...section で指定したセクションにある name というキーの
情報を value に変更します。

指定した section が存在しない場合には新たにそのセクションが
オブジェクト内に作られます。
指定した name が存在しない場合も同様に新た...
...ェクト内に作られます。指定した name が存在した場合には
情報が上書きされます。

value を返します。

@param section セクションを表す文字列
@param name キーを表す文字列
@param value 変更後の値の文字列
@raise OpenSSL::ConfigError 設...

OpenSSL::Config#value(section, name) -> String | nil (415.0)

このメソッドは obsolete です。

...が持っている設定情報を返します。

引数が一つの場合はグローバルセクションの情報を返し、
2つの場合は section で指定したセクションの情報を返します。

@param section セクションを表す文字列
@param name キーを表す文字列...

NEWS for Ruby 3.0.0 (408.0)

NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。

...ated from positional arguments.
Code that resulted in deprecation warnings in Ruby 2.7 will now
result in ArgumentError or different behavior. 14183
* Procs accepting a single rest argument and keywords are no longer
subject to autosplatting. This now matches the behavior of Procs...
...by]{
pr = proc{|*a, **kw| [a, kw]}

pr.call([1])
# 2.7 => [[1], {}]
# 3.0 => [[[1]], {}]

pr.call([1, {a: 1}])
# 2.7 => [[1], {:a=>1}] # and deprecation warning
# 3.0 => a=>1}, {}]
//}

* Arguments forwarding (`...`) now supports leading arguments.
16378

//emlist{
def method_missing(meth, ......
...=> {b:}
p b #=> 0
//}

//emlist{
# version 3.0
0 in 1 #=> false

# version 2.7
0 in 1 #=> raise NoMatchingPatternError
//}

* Find-pattern is added. [EXPERIMENTAL]
16828

//emlist{
case ["a", 1, "b", "c", 2, "d", "e", "f", 3]
in [*pre, String => x, String => y, *post]
p pre #=> ["a", 1]...

OpenSSL::Config#get_value(section, name) -> String | nil (408.0)

オブジェクトが持っている設定情報を返します。

...ジェクトが持っている設定情報を返します。

キーに対応する設定情報がない場合は nil を返します。

@param section セクションを表す文字列。"" を渡すことでグローバルな設定情報を読むことができます。
@param name キーを表...

絞り込み条件を変える

<< 1 2 > >>