36件ヒット
[1-36件を表示]
(0.032秒)
検索結果
先頭3件
-
CGI
:: Cookie (7.0) -
クッキーを表すクラスです。
...only' => true # optional
})
cgi.out({"cookie" => [cookie1, cookie2]}){ "string" }
name = cookie1.name
values = cookie1.value
path = cookie1.path
domain = cookie1.domain
expires = cookie1.expires
secure = cookie1.secure
httponly... -
CSV (7.0)
-
このクラスは CSV ファイルやデータに対する完全なインターフェイスを提供します。
...Hopefully this
makes the entire process feel transparent, since CSV's defaults should just
magically work for you data. However, you can set these values manually in
the target Encoding to avoid the translation.
It's also important to note that while all of CSV's core parser is now
Encoding agnost... -
Psych
:: Parser (7.0) -
YAML のパーサ。
...い。
以下の例では YAML ドキュメント に含まれているスカラー値を表示します。
# Handler for detecting scalar values
class ScalarHandler < Psych::Handler
def scalar value, anchor, tag, plain, quoted, style
puts value
end
end
parser = Psych::Parse...