るりまサーチ

最速Rubyリファレンスマニュアル検索!
77件ヒット [1-77件を表示] (0.116秒)
トップページ > クエリ:I[x] > クエリ:IO[x] > クエリ:-[x] > クエリ:dependencies[x]

別のキーワード

  1. io popen
  2. io pipe
  3. io readlines
  4. io each
  5. io each_line

検索結果

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

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

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

@see Gem::Dependency

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

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

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

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

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

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

Gem::DependencyInstaller::DEFAULT_OPTIONS -> Hash (12306.0)

自身を初期化する際に使用するデフォルトのオプションです。

...:env_shebang => false,
:domain => :both, # HACK dup
:force => false,
:format_executable => false, # HACK dup
:ignore_dependencies => false,
:security_policy => nil, # HACK NoSecurity requires OpenSSL. AlmostNo? Low?
:wrappers...

Gem::DependencyInstaller.new(options = {}) -> Gem::DependencyInstaller (3306.0)

自身を初期化します。

...自身を初期化します。

オプションとして以下のものを利用できます。

: :cache_dir
*.gem ファイルを保存するディレクトリを指定します。
: :domain
:local (カレントディレクトリのみ検索します), :remote (Gem.sources を検索します),...
...:both (:local, :remote の両方を検索します) のいずれかを指定可能です。
: :env_shebang
Gem::Installer.new を参照してください。
: :force
バージョンチェックとセキュリティポリシーのチェックを行わずにインストールを実行します...
...Gem::Installer.new を参照してください。
: :ignore_dependencies
依存している Gem をインストールしません。
: :install_dir
Gem をインストールするディレクトリです。
: :security_policy
セキュリティポリシーを指定します。
: :user_instal...

絞り込み条件を変える

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

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

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

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

I
...
...f 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::Installer.new(gem, options = {}) -> Gem::Installer (3306.0)

@todo 書いてないオプションがいっぱいある

...スを指定します。

@param options インストーラが使用するオプションをハッシュで指定します。
使用できるキーは以下の通りです。
: :env_shebang
コマンドのラッパーで shebang line に /usr/bin/env を使用します。
: :force...
...クとセキュリティポリシーのチェックを行わないようにします。
: :ignore_dependencies
依存関係を満たしていない場合でも例外を発生させません。
: :install_dir
Gem をインストールするディレクトリを指定します。
: :format_executa...
...ecurity_policy
特定のセキュリティポリシーを使用します。詳細は Gem::Security を参照してください。
: :wrappers
この値が真の場合は、ラッパーをインストールします。偽の場合は、シンボリックリンクを作成します。
: :user_inst...