999件ヒット
[101-200件を表示]
(0.029秒)
別のキーワード
ライブラリ
- psych (912)
-
yaml
/ store (21)
クラス
- Object (12)
-
Psych
:: Emitter (12) -
Psych
:: Nodes :: Alias (36) -
Psych
:: Nodes :: Document (84) -
Psych
:: Nodes :: Mapping (144) -
Psych
:: Nodes :: Scalar (228) -
Psych
:: Nodes :: Sequence (144) -
Psych
:: Nodes :: Stream (48) -
Psych
:: Parser (24) -
Psych
:: ScalarScanner (24) -
Psych
:: Stream (36) -
Psych
:: TreeBuilder (12) -
Psych
:: Visitors :: YAMLTree (12) -
YAML
:: Store (21)
モジュール
- Psych (24)
キーワード
- ANY (36)
- BLOCK (24)
-
DOUBLE
_ QUOTED (12) - Emitter (12)
- FLOW (24)
- FOLDED (12)
- LITERAL (12)
-
NEWS for Ruby 2
. 2 . 0 (11) -
NEWS for Ruby 2
. 3 . 0 (10) -
NEWS for Ruby 2
. 4 . 0 (9) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 2
. 6 . 0 (7) -
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - Nodes (12)
- PLAIN (12)
- Parser (12)
-
SINGLE
_ QUOTED (12) - Stream (12)
- TreeBuilder (12)
- UTF16BE (12)
- UTF16LE (12)
- UTF8 (12)
- YAMLTree (12)
- anchor (48)
- anchor= (48)
- dump (24)
- implicit (36)
- implicit= (36)
- parse (12)
- plain (12)
- plain= (12)
- quoted (12)
- quoted= (12)
- start (24)
- style (36)
- style= (36)
- tag (36)
- tag= (36)
-
tag
_ directives (12) -
tag
_ directives= (12) - tokenize (12)
- value (12)
- value= (12)
- version (12)
- version= (12)
- yaml (12)
-
yaml
_ tag (12)
検索結果
先頭5件
-
Psych
:: Nodes :: Alias . new(anchor) -> Psych :: Nodes :: Alias (29202.0) -
新たな Alias オブジェクトを生成します。
新たな Alias オブジェクトを生成します。
anchor で指す先の anchor を指定します。
@param anchor 指す先の anchor -
Psych
:: Stream . new(io) -> Psych :: Stream (29202.0) -
新たな Stream オブジェクトを生成します。
新たな Stream オブジェクトを生成します。
io で YAML document の出力先を指定します。
@param io 出力先の IO オブジェクト -
Psych
:: TreeBuilder . new -> Psych :: TreeBuilder (29202.0) -
TreeBuilder オブジェクトを生成します。
TreeBuilder オブジェクトを生成します。 -
Psych
:: ScalarScanner . new (29101.0) -
新たな ScalarScanner オブジェクトを生成します。
新たな ScalarScanner オブジェクトを生成します。 -
YAML
:: Store . new(file _ name , thread _ safe = false , yaml _ opts = {}) -> YAML :: Store (18108.0) -
自身を初期化します。
...在する場合はその内容を読み込みます。
@param thread_safe 自身をスレッドセーフにして初期化するかどうか。
@param yaml_opts YAML 出力時のオプションを Hash で指定します。
詳しくは Psych.dump を参照してください。... -
YAML
:: Store . new(file _ name , yaml _ opts = {}) -> YAML :: Store (18108.0) -
自身を初期化します。
...ファイルがない場合は作成します。既
にファイルが存在する場合はその内容を読み込みます。
@param yaml_opts YAML 出力時のオプションを Hash で指定します。
詳しくは Psych.dump を参照してください。......在する場合はその内容を読み込みます。
@param thread_safe 自身をスレッドセーフにして初期化するかどうか。
@param yaml_opts YAML 出力時のオプションを Hash で指定します。
詳しくは Psych.dump を参照してください。... -
Psych
. dump(o , io , options = {}) -> () (17036.0) -
Ruby のオブジェクト o を YAML ドキュメントに変換します。
...[例][ruby]{
# Dump an array, get back a YAML string
Psych.dump(['a', 'b']) # => "---\n- a\n- b\n"
# Dump an array to an IO object
Psych.dump(['a', 'b'], StringIO.new) # => #<StringIO:0x000001009d0890>
# Dump an array with indentation set
Psych.dump(['a', ['b']], :indentation => 3) # => "---\n-......a\n- - b\n"
# Dump an array to an IO with indentation set
Psych.dump(['a', ['b']], StringIO.new, :indentation => 3)
//}... -
Psych
. dump(o , options = {}) -> String (17036.0) -
Ruby のオブジェクト o を YAML ドキュメントに変換します。
...[例][ruby]{
# Dump an array, get back a YAML string
Psych.dump(['a', 'b']) # => "---\n- a\n- b\n"
# Dump an array to an IO object
Psych.dump(['a', 'b'], StringIO.new) # => #<StringIO:0x000001009d0890>
# Dump an array with indentation set
Psych.dump(['a', ['b']], :indentation => 3) # => "---\n-......a\n- - b\n"
# Dump an array to an IO with indentation set
Psych.dump(['a', ['b']], StringIO.new, :indentation => 3)
//}... -
Psych
:: Stream # start(encoding = Psych :: Nodes :: Stream :: UTF8) -> Psych :: Stream (11216.0) -
Ruby オブジェクトを YAML document に変換するための準備をします。
...Ruby オブジェクトを YAML document に変換するための準備をします。
変換された document は Psych::Stream.new で指定した
出力先に出力されます。
finish を呼び出すことで出力が完了します(finish を呼び出さないと
最後まで出力され...