349件ヒット
[301-349件を表示]
(0.020秒)
ライブラリ
- ビルトイン (12)
- bigdecimal (1)
- erb (12)
- irb (12)
-
net
/ http (60) - openssl (24)
- psych (48)
-
rake
/ packagetask (12) -
rexml
/ document (12) - rss (12)
-
rubygems
/ requirement (36) -
rubygems
/ version (36) - securerandom (12)
- strscan (12)
-
webrick
/ httpversion (24)
クラス
- BigDecimal (1)
- ERB (12)
-
Gem
:: Requirement (36) -
Gem
:: Version (36) -
Net
:: HTTP (60) -
OpenSSL
:: SSL :: SSLContext (24) -
Psych
:: Nodes :: Document (12) -
REXML
:: XMLDecl (12) -
Rake
:: PackageTask (12) - StringScanner (12)
- Symbol (12)
-
WEBrick
:: Cookie (24) -
WEBrick
:: HTTPVersion (24)
モジュール
- IRB (12)
- Psych (36)
-
RSS
:: Maker (12) - SecureRandom (12)
キーワード
-
all
_ symbols (12) - convert (12)
- correct? (12)
- create (24)
- dump (24)
-
is
_ version _ 1 _ 1? (12) -
is
_ version _ 1 _ 2? (12) -
libyaml
_ version (12) - make (12)
-
must
_ C _ version (12) - new (96)
- parse (24)
- uuid (12)
- ver (1)
-
version
_ 1 _ 1? (12) -
version
_ 1 _ 2 (12) -
version
_ 1 _ 2? (12)
検索結果
先頭5件
-
Psych
. dump(o , options = {}) -> String (7.0) -
Ruby のオブジェクト o を YAML ドキュメントに変換します。
...文字列としてメソッドの返り値と
なります。
options で出力に関するオプションを以下の指定できます。
: :version
YAML document に付加するバージョンを [major, minor] という配列、
もしくは文字列で指定します
: :header
出力に... -
SecureRandom
. uuid -> String (7.0) -
バージョン 4 の UUID (Universally Unique IDentifier) を生成して返します。
...バージョン 4 の UUID (Universally Unique IDentifier) を生成して返します。
version 4 の UUID は全くランダムです (バージョンを除いて)。
この UUID は MAC アドレスや時刻などのような意味のある情報を含みません。
@raise NotImplementedErro... -
Symbol
. all _ symbols -> [Symbol] (7.0) -
定義済みの全てのシンボルオブジェクトの配列を返します。
...定義済みの全てのシンボルオブジェクトの配列を返します。
p Symbol.all_symbols #=> [:RUBY_PLATFORM, :RUBY_VERSION, ...]
リテラルで表記したシンボルのうち、コンパイル時に値が決まるものはその時に生成されます。
それ以外の式... -
WEBrick
:: Cookie . parse(str) -> [WEBrick :: Cookie] (7.0) -
ユーザーエージェントから送られてきた Cookie ヘッダの値 str をパースし、 新しく WEBrick::Cookie オブジェクトを生成しその配列を返します。 各属性の形式が仕様に準拠しているかを確認しません。
...いるかを確認しません。
@param str Cookie を表す文字列を指定します。
require 'webrick'
include WEBrick
c = Cookie.parse('$Version="1"; Customer="WILE"; $Path="/foo"; P_Number="Rocket"; $Path="/foo/hoge"')
p c[1].name, c[1].path
#=>
"P_Number"
"/foo/hoge"... -
WEBrick
:: Cookie . parse _ set _ cookie(str) -> WEBrick :: Cookie (7.0) -
サーバから送られてくる Set-Cookie ヘッダの値 str をパースし、 新しく WEBrick::Cookie オブジェクトを生成し返します。
...ck::Cookie オブジェクトを生成し返します。
@param str Set-Cookie ヘッダの値を文字列で指定します。
require 'webrick'
include WEBrick
c = Cookie.parse_set_cookie('Shipping="FedEx"; Version="1"; Path="/acme"')
p c.name, c.value
#=>
"Shipping"
"FedEx"...