るりまサーチ

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

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

クラス

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

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

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

...ation のリストを返します。

このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存関係による多くの問題を回避することができます。

If th...
...ere are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
t
hey 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 (24401.0)

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

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

Gem::DependencyInstaller#gather_dependencies -> Array (24301.0)

依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。

依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。

Gem::Installer#installation_satisfies_dependency?(dependency) -> bool (21501.0)

登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。

...登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。

@param dependency Gem::Dependency のインスタンスを指定します。...

Module#protected_method_defined?(name, inherit=true) -> bool (21401.0)

インスタンスメソッド name がモジュールに定義されており、 しかもその可視性が protected であるときに true を返します。 そうでなければ false を返します。

...おり、
しかもその可視性が protected であるときに true を返します。
そうでなければ false を返します。

@param name Symbol か String を指定します。
@param inherit 真を指定するとスーパークラスや include したモジュールで
定義...
...odule#method_defined?, Module#public_method_defined?, Module#private_method_defined?

//emlist[例][ruby]{
module A
d
ef method1() end
end
class B
protected
d
ef method2() end
end
class C < B
include A
d
ef method3() end
end

A.method_defined? :method1 #=> true
C.protect...
...ed_method_defined? "method1" #=> false
C.protected_method_defined? "method2" #=> true
C.protected_method_defined? "method2", true #=> true
C.protected_method_defined? "method2", false #=> false
C.method_defined? "method2" #=> true
//}...

絞り込み条件を変える

Encoding::UndefinedConversionError#destination_encoding -> Encoding (21301.0)

エラーを発生させた変換の変換先のエンコーディングを Encoding オブジェクトで返します。

...エラーを発生させた変換の変換先のエンコーディングを Encoding
オブジェクトで返します。

@see Encoding::UndefinedConversionError#source_encoding...

Encoding::UndefinedConversionError#destination_encoding_name -> String (21301.0)

エラーを発生させた変換の変換先のエンコーディングを文字列で返します。

...エラーを発生させた変換の変換先のエンコーディングを文字列で返します。

@see Encoding::UndefinedConversionError#destination_encoding...

Gem::Package::TarInput#metadata -> Gem::Specification (21301.0)

メタデータを返します。

メタデータを返します。

Gem::Package::TarOutput#add_metadata (21301.0)

gem-format な tar ファイルに metadata.gz を追加します。

...gem-format tar ファイルに metadata.gz を追加します。

前回の Gem::Package::TarOutput#add_gem_contents の呼び出し以降に
変更したメタデータを書き込みます。...
<< 1 2 3 ... > >>