ライブラリ
- ビルトイン (19)
-
rdoc
/ markdown (24) -
rubygems
/ specification (24)
クラス
-
Gem
:: Specification (24) -
RDoc
:: Markdown (24)
キーワード
- AbstractSyntaxTree (7)
- InstructionSequence (12)
-
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 1 . 0 (12) -
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 2
. 7 . 0 (6) -
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - Ruby用語集 (12)
-
add
_ dependency (12) -
add
_ runtime _ dependency (12) -
bigdecimal
/ ludcmp (12) -
bigdecimal
/ newton (12) - debug (12)
-
did
_ you _ mean (12) - find (12)
- github= (12)
-
minitest
/ mock (11) -
minitest
/ spec (11) -
minitest
/ unit (11) -
net
/ telnet (10) -
power
_ assert (12) -
rb
_ scan _ args (12) -
rdoc
/ markdown (12) -
rexml
/ document (12) -
test
/ unit (12) - xmlrpc (9)
- このマニュアルのヘルプ (12)
- 正規表現 (12)
検索結果
先頭5件
-
このマニュアルのヘルプ (24.0)
-
このマニュアルのヘルプ === 記号の説明
...お問い合わせ
間違いを見付けた場合は
* https://github.com/rurema
へお願いします。
それ以外の意見なども
* https://github.com/rurema
へお願いします。
GitHub の使い方は
* https://github.com/rurema/doctree/wiki/HowToReport
を参照してください... -
NEWS for Ruby 2
. 0 . 0 (18.0) -
NEWS for Ruby 2.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...Fixnum, Bignum, Float
* フリーズされました。
* Signal.trap
* 上を参照
* Onigmo をマージしました。
https://github.com/k-takata/Onigmo
* The :close_others option is true by default for system() and exec().
Also, the close-on-exec flag is set by default f......README を表示する
$ ri rspec:README
//}
* Markdown をサポートしました。RDoc::Markdown を見てください。
* https://github.com/ruby/rdoc/blob/master/History.rdoc
* resolv
* 追加: Resolv::DNS#timeouts=
* 追加: Resolv::DNS::Config#timeouts=
* rexml......i フォーマットだけを生成します
* `gem server` はHTMLを生成するために RDoc::Servlet を使います。
* https://github.com/rubygems/rubygems/blob/master/History.txt
* shellwords
* Shellwords#shellescape 与えられたオブジェクトを to_s で文字列... -
正規表現 (18.0)
-
正規表現 * metachar * expansion * char * anychar * string * str * quantifier * capture * grouping * subexp * selector * anchor * cond * option * encoding * comment * free_format_mode * absenceop * list * specialvar * references
...\p{property-name}
* \p{^property-name} (否定)
* \P{property-name} (否定)
サポートされているプロパティのリストは
https://github.com/k-takata/Onigmo/blob/master/doc/UnicodeProps.txt を
参考にしてください。また、プロパティの意味は Unicode の仕様を......、オライリー・ジャパン(2008) https://www.oreilly.co.jp/books/9784873113593/
* Onigmoのドキュメント:https://github.com/k-takata/Onigmo/blob/master/doc/RE.ja
* Ruby の tarball に含まれている doc/regexp.rdoc:https://github.com/ruby/ruby/blob/master/doc/regexp.rdoc... -
NEWS for Ruby 2
. 1 . 0 (12.0) -
NEWS for Ruby 2.1.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...。
* rdoc
* 4.1.0 に更新。主にデフォルトのテンプレートとアクセシビリティを改善しました。
https://github.com/ruby/rdoc/blob/v4.1.0.preview.1/History.rdoc
* resolv
* 追加: Resolv::DNS.fetch_resource
* One-shot multicast DNS support
* Su......rative resolver (compared to RubyGems 2.1 and earlier)
* Support for a sharing a GEM_HOME across ruby platforms and versions
* https://github.com/rubygems/rubygems/tree/master/History.txt
* set
* 追加: Set#intersect?
* 追加: Set#disjoint?
* socket
* 追加: Socket.g... -
Gem
:: Specification # add _ dependency(gem , *requirements) -> [Gem :: Dependency] (6.0) -
この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。
...この gem の RUNTIME 依存性を追加します。
実行時に必要となる gem を指定します。
//emlist[][ruby]{
# https://github.com/rurema/bitclust/blob/v1.2.3/bitclust-core.gemspec#L25
s.add_runtime_dependency "progressbar", ">= 1.9.0", "< 2.0"
//}
@param gem 依存する gem の... -
Gem
:: Specification # add _ runtime _ dependency(gem , *requirements) -> [Gem :: Dependency] (6.0) -
この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。
...この gem の RUNTIME 依存性を追加します。
実行時に必要となる gem を指定します。
//emlist[][ruby]{
# https://github.com/rurema/bitclust/blob/v1.2.3/bitclust-core.gemspec#L25
s.add_runtime_dependency "progressbar", ">= 1.9.0", "< 2.0"
//}
@param gem 依存する gem の... -
RubyVM
:: AbstractSyntaxTree (6.0) -
Ruby のコードをパースして得られる抽象構文木を扱うモジュールです。
...方法は提供されていません。
もし安定したAPIやMRI以外の実装で抽象構文木を扱いたい場合、
parser gem (https://github.com/whitequark/parser)や
Ripperの使用を検討してください。
もし RubyVM::AbstractSyntaxTree のAPIを安定にしたい場合、14844... -
RubyVM
:: InstructionSequence (6.0) -
Ruby の Virtual Machine のコンパイル済みの命令シーケンスを表すクラスです。
...コンパイラの設定を
扱う必要がありますが、Ruby の VM がどのように働くかを知るのに有用です。
VM の命令シーケンスの一覧はRuby のソースコード中の insns.def から参照で
きます。
* https://github.com/ruby/ruby/blob/master/insns.def... -
Ruby用語集 (6.0)
-
Ruby用語集 A B C D E F G I J M N O R S Y
...ョンの Ruby をインストールし、切り替えて使うための
ツールの一つ。Linux、macOS などで動作する。
https://github.com/rbenv/rbenv
: RD(Ruby Document format)
Ruby スクリプト中に記述することを念頭に作られたドキュメントフォー...