180件ヒット
[1-100件を表示]
(0.034秒)
別のキーワード
種類
- インスタンスメソッド (96)
- ライブラリ (48)
- 特異メソッド (24)
- 定数 (12)
ライブラリ
クラス
-
Gem
:: Commands :: DependencyCommand (24) -
Gem
:: DependencyInstaller (36) -
Gem
:: DependencyList (12) -
Gem
:: Installer (12) -
Gem
:: Specification (36) -
Gem
:: Uninstaller (12)
キーワード
-
DEFAULT
_ OPTIONS (12) -
dependencies
_ ok? (12) -
dependency
_ order (12) -
development
_ dependencies (12) -
find
_ reverse _ dependencies (12) -
gather
_ dependencies (12) - new (24)
-
print
_ dependencies (12) -
rake
/ gempackagetask (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
runtime
_ dependencies (12)
検索結果
先頭5件
-
Gem
:: Specification # dependencies -> Array (21123.0) -
依存している Gem のリストを返します。
...依存している Gem のリストを返します。
@see Gem::Dependency... -
Gem
:: Commands :: DependencyCommand # find _ reverse _ dependencies(spec) -> Array (9139.0) -
与えられた Gem スペックに依存する Gem のリストを返します。
...与えられた Gem スペックに依存する Gem のリストを返します。
@param spec Gem::Specification のインスタンスを指定します。... -
Gem
:: DependencyInstaller # gather _ dependencies -> Array (9133.0) -
依存関係を無視するように指定されていない限り、インストールするように指定された Gem が依存している Gem の情報を集めて返します。
...依存関係を無視するように指定されていない限り、インストールするように指定された
Gem が依存している Gem の情報を集めて返します。... -
Gem
:: Specification # development _ dependencies -> Array (9133.0) -
この Gem が依存している Gem のリストを返します。
...この Gem が依存している Gem のリストを返します。... -
Gem
:: Specification # runtime _ dependencies -> Array (9133.0) -
この Gem パッケージが依存している Gem パッケージのリストを返します。
...この Gem パッケージが依存している Gem パッケージのリストを返します。... -
Gem
:: Uninstaller # dependencies _ ok?(spec) -> bool (9129.0) -
アンインストール指定された Gem を削除しても依存関係を満たすことができるか どうかチェックします。
...アンインストール指定された Gem を削除しても依存関係を満たすことができるか
どうかチェックします。
@param spec アンインストール指定されている Gem の Gem::Specification を指定します。... -
Gem
:: Commands :: DependencyCommand # print _ dependencies(spec , level = 0) -> String (9107.0) -
依存関係を表す文字列を返します。
...依存関係を表す文字列を返します。
@param spec Gem::Specification のインスタンスを指定します。
@param level 依存関係の深さを指定します。... -
rubygems
/ commands / install _ command (6094.0) -
Gem パッケージをローカルリポジトリにインストールするためのライブラリです。
...Gem パッケージをローカルリポジトリにインストールするためのライブラリです。
Usage: gem install GEMNAME [GEMNAME ...] [options] -- --build-flags [options]
Options:
--platform PLATFORM 指定されたプラットフォームの Gem パッケ......指定されたバージョンの Gem パッケージをインストールします
Install/Update Options:
-i, --install-dir DIR Gem パッケージのインストー先を指定します
-n, --bindir DIR Gem パッケージに含まれるバイナ......です
-P, --trust-policy POLICY Specify gem trust policy
--ignore-dependencies 依存している Gem パッケージをインストールしません
-y, --include-dependencies 依存している Gem パッケージをインストールします... -
rake
/ gempackagetask (6068.0) -
Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
...Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
Gem パッケージだけでなく zip, tgz, tar.gz, tar.bz2 の各ファイルを作成する事もできます。
以下のタスクを定義します。
: PACKAGE_DI......R/NAME-VERSION.gem
Gem パッケージを作成します。
例:
require 'rubygems'
spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "Ruby based make-like utility."
s.name = 'rake'
s.version = PKG_VERSION
s.requirements << 'none'......re = 'rake'
s.files = PKG_FILES
s.description = <<EOF
Rake is a Make-like program implemented in Ruby. Tasks
and dependencies are specified in standard Ruby syntax.
EOF
end
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end...