種類
- インスタンスメソッド (228)
- 特異メソッド (60)
- ライブラリ (36)
- 文書 (31)
クラス
- CSV (12)
-
Gem
:: Command (12) - Hash (84)
-
JSON
:: State (24) - Object (12)
-
RDoc
:: Options (12) - Set (12)
-
URI
:: Generic (36)
モジュール
- Enumerable (24)
- GC (24)
- Kernel (12)
オブジェクト
- ENV (24)
キーワード
- + (12)
-
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) -
NEWS for Ruby 2
. 6 . 0 (7) - configure (12)
-
latest
_ gc _ info (24) - merge! (48)
-
merge
_ libs (12) - rdoc (12)
-
rdoc
/ generator / json _ index (12) -
rdoc
/ markdown (12) - replace (12)
-
ruby 1
. 8 . 4 feature (12) -
slice
_ before (24) - table (12)
-
to
_ hash (12) - update (36)
検索結果
先頭5件
-
rdoc (6.0)
-
RDoc は Ruby のドキュメント生成を行うためのライブラリです。rdoc という ドキュメント生成のためのコマンドも含んでいます。
...イル(例えば、README など)を置きたければ、それをコ
マンドラインの最初に置くだけでもかまいません。
: --merge
ri の出力を生成するとき、出力ディレクトリにすでにファイルが存在すれば、
そのファイルを上書きせず... -
rdoc
/ generator / json _ index (6.0) -
他のジェネレータが生成する HTML で検索が行えるように、JSON の検索インデッ クスを生成するサブライブラリです。
...ocumentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subjec... -
rdoc
/ markdown (6.0) -
Markdown 形式で記述されたドキュメントを rdoc 上で解析するための サブライブラリです。
...ocumentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subjec... -
ruby 1
. 8 . 4 feature (6.0) -
ruby 1.8.4 feature ruby 1.8.4 での ruby 1.8.3 からの変更点です。
...行えないというバグを修正しました.
#Wed Nov 2 20:14:53 2005 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
#
# * ext/tcltklib: merge into ext/tk and remove.
#
Ruby のソース上で tcltklib と tk とを Ruby 1.9 系と同様に一体化しました.
これによ... -
JSON
:: State # configure(options = {}) -> self (1.0) -
与えられたハッシュで自身を設定します。
与えられたハッシュで自身を設定します。
オプションで使用するハッシュのキーについては JSON::State.new を参照してください。
@param options このオブジェクトの設定をするためのハッシュを指定します。
//emlist[例][ruby]{
require "json"
json_state = JSON::State.new(indent: "\t")
json_state.indent # => "\t"
JSON.generate({key1: "value1", key2: "value2"}, json_state)
# => "{\t\"key1\...