るりまサーチ

最速Rubyリファレンスマニュアル検索!
1389件ヒット [1-100件を表示] (0.148秒)

別のキーワード

  1. bigdecimal/util to_d
  2. float to_d
  3. rsa d
  4. rsa d=
  5. matrix d

キーワード

検索結果

<< 1 2 3 ... > >>

Gem::DependencyList#dependency_order -> [Gem::Specification] (24401.0)

依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

...依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存...
...If there are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
they reference are left. Then arbitrary gemspecs will be returned
until the circular dependency is broken, after which gems will be
returned in dependency order again....

Gem::Specification#development_dependencies -> Array (21301.0)

この Gem が依存している Gem のリストを返します。

この Gem が依存している Gem のリストを返します。

Shell::CommandProcessor#cat(*files) -> Shell::Filter (21114.0)

実行すると, それらを内容とする Filter オブジェクトを返します.

....

@param files シェルコマンド cat に与えるファイル名を文字列で指定します。

動作例
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!
cat
(file).each { |l|
echo(l) |...

Gem::Specification#dependencies -> Array (15201.0)

依存している Gem のリストを返します。

...依存している Gem のリストを返します。

@see Gem::Dependency...

Gem::Specification#dependent_gems -> Array (15201.0)

この Gem に依存している全ての Gem の情報のリストを返します。

...この Gem に依存している全ての Gem の情報のリストを返します。

それぞれのエントリは配列になっており、各要素は以下のようになっています。

(0) Gem::Specification
(1) Gem::Dependency
(2) Gem::Specification の配列...

絞り込み条件を変える

Gem::Specification#runtime_dependencies -> Array (15201.0)

この Gem パッケージが依存している Gem パッケージのリストを返します。

この Gem パッケージが依存している Gem パッケージのリストを返します。

Module#deprecate_constant(*name) -> self (12207.0)

name で指定した定数を deprecate に設定します。 deprecate に設定した定数を参照すると警告メッセージが表示されます。

...name で指定した定数を deprecate に設定します。
d
eprecate に設定した定数を参照すると警告メッセージが表示されます。

Ruby 2.7.2 から Warning[:deprecated] のデフォルト値が false に変更になったため、
デフォルトでは警告が表示さ...
...インオプション(詳細はd:spec/rubycmd#cmd_option参照)で、
「-w」か「-W2」などを指定するか、実行中に「Warning[:deprecated] = true」で
変更すると表示されるようになります。

「$VERBOSE = true」は「Warning[:deprecated]」に影響しないため、...
...い定数を指定した場合に発生します。

@return self を返します。

//emlist[例][ruby]{
FOO = 123
Object.deprecate_constant(:FOO) # => Object

FOO
# warning: constant ::FOO is deprecated
# => 123

Object.deprecate_constant(:BAR)
# NameError: constant Object::BAR not defined
//}...

OpenSSL::PKCS7#add_certificate(cert) -> self (12201.0)

署名に添付する証明書を追加します。

...を追加します。

通常は OpenSSL::PKCS7.sign の引数で添付する証明書を指定した
ほうがよいでしょう。

@param cert 追加する証明書(OpenSSL::X509::Certificate オブジェクト)
@raise OpenSSL::PKCS7::PKCS7Error 追加に失敗した場合に発生します。...

RDoc::Context#record_location(toplevel) (12201.0)

Record the file that we happen to find it in

...Record the file that we happen to find it in...
<< 1 2 3 ... > >>