るりまサーチ

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

別のキーワード

  1. _builtin to_c
  2. etc sc_2_c_bind
  3. etc sc_2_c_dev
  4. tracer display_c_call=
  5. tracer display_c_call?

キーワード

検索結果

<< 1 2 3 ... > >>

Gem::SourceIndex#specification(full_name) -> Gem::Specification | nil (24435.0)

指定された名前の Gem::Specification オブジェクトを返します。

...指定された名前の Gem::Specification オブジェクトを返します。

@param full_name Gem のフルネームを指定します。...

Gem::Specification#specification_version=(version) (18214.0)

この Gem パッケージに用いられている gemspec のバージョンをセットします。

...この Gem パッケージに用いられている gemspec のバージョンをセットします。

@param version gemspec のバージョンを指定します。

@see Gem::Specification::SPECIFICATION_VERSION_HISTORY...

Gem::Specification#specification_version -> Integer (18202.0)

この Gem パッケージに用いられている gemspec のバージョンを返します。

...この Gem パッケージに用いられている gemspec のバージョンを返します。...

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

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

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

@see Gem::Dependency...

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

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

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

絞り込み条件を変える

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

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

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

Gem::DependencyList#dependency_order -> [Gem::Specification] (9234.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#add_dependency(gem, *requirements) -> [Gem::Dependency] (9219.0)

この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。

...em を指定します。

//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::Dependency のインスタンスを指定します。

@param requirem...
...ents バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。

@see Gem::Specification#add_development_dependency, Gem::Dependency...

Gem::Specification#add_development_dependency(gem, *requirements) -> [Gem::Dependency] (9219.0)

この gem の DEVELOPMENT 依存性を追加します。 この gem の開発時に必要となる gem を指定します。

...ack", "~> 1.6", ">= 1.6.12"
//}

@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。

@param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。

@see Gem::Specification#add_runtime_dependency...
..., Gem::Dependency...
<< 1 2 3 ... > >>