192件ヒット
[1-100件を表示]
(0.035秒)
別のキーワード
種類
- インスタンスメソッド (144)
- ライブラリ (36)
- 特異メソッド (12)
ライブラリ
- rubygems (36)
-
rubygems
/ dependency (36) -
rubygems
/ requirement (24) -
rubygems
/ specification (60)
クラス
-
Gem
:: Dependency (36) -
Gem
:: LoadError (24) -
Gem
:: Requirement (24) -
Gem
:: Specification (60)
モジュール
- Kernel (12)
キーワード
-
add
_ dependency (12) -
add
_ development _ dependency (12) -
add
_ runtime _ dependency (12) - concat (12)
- new (12)
-
rake
/ gempackagetask (12) - requirements= (12)
-
requirements
_ list (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
version
_ requirement (12) -
version
_ requirement= (12) -
version
_ requirements (12) -
version
_ requirements= (12)
検索結果
先頭5件
-
Gem
:: Specification # requirements -> Array (21117.0) -
この Gem パッケージを動作させるのに必要な条件を返します。 これはユーザのためのシンプルな情報です。
...この Gem パッケージを動作させるのに必要な条件を返します。
これはユーザのためのシンプルな情報です。... -
Kernel
# gem(gem _ name , *version _ requirements) -> bool (18493.0) -
$LOAD_PATH に Ruby Gem を追加します。
...uby Gem を追加します。
指定された Gem をロードする前にその Gem が必要とする Gem をロードします。
バージョン情報を省略した場合は、最も高いバージョンの Gem をロードします。
指定された Gem やその Gem が必要とする Gem......が見つからなかった場合は
Gem::LoadError が発生します。
バージョンの指定方法に関しては Gem::Version を参照してください。
rubygems ライブラリがライブラリバージョンの衝突を検出しない限り、
gem メソッドは全ての require メ......例:
GEM_SKIP=libA:libB ruby-I../libA -I../libB ./mycode.rb
@param gem Gem の名前の文字列か、Gem の依存関係を Gem::Dependency のインスタンスで指定します。
@param version_requirements 必要とする gem のバージョンを指定します。
@return Gem がロ... -
Gem
:: Dependency # version _ requirements=(version _ requirements) (9214.0) -
依存しているバージョンを設定します。
...依存しているバージョンを設定します。
@param version_requirements Gem::Requirement のインスタンスを指定します。... -
Gem
:: Dependency # version _ requirements -> Gem :: Requirement (9202.0) -
依存しているバージョンを返します。
依存しているバージョンを返します。 -
Gem
:: Specification # requirements=(informations) (9117.0) -
この Gem パッケージを動作させるのに必要な条件をセットします。 これはユーザのためのシンプルな情報をセットします。
...この Gem パッケージを動作させるのに必要な条件をセットします。
これはユーザのためのシンプルな情報をセットします。
@param informations 情報を文字列の配列で指定します。... -
Gem
:: Dependency # requirements _ list -> [String] (9101.0) -
バージョンの必要条件を文字列の配列として返します。
バージョンの必要条件を文字列の配列として返します。 -
rubygems
/ commands / lock _ command (6132.0) -
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
...指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために
必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
Usage: gem lock GEMNAME-VERSION [GEMNAME-VERSION ...] [options]
Options:
-s, --[no-]strict......ンを有効にします
Arguments:
GEMNAME ロックする Gem パッケージの名前を指定します
VERSION ロックする Gem パッケージのバージョンを指定します
Summary:
特定バージョンの Gem パッケージを使用するため......ate a list of +gem+ statements that will lock
down
the versions for the gem given in the command line. It will specify exact
versions in the requirements list to ensure that the gems loaded will always
be consistent. A full recursive search of all effected gems will be... -
rake
/ gempackagetask (6068.0) -
Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
...Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。
Gem パッケージだけでなく zip, tgz, tar.gz, tar.bz2 の各ファイルを作成する事もできます。
以下のタスクを定義します。
: PACKAGE_DI......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... -
rubygems
/ commands / uninstall _ command (6058.0) -
Gem パッケージをアンインストールするためのライブラリです。
...Gem パッケージをアンインストールするためのライブラリです。
Usage: gem uninstall GEMNAME [GEMNAME ...] [options]
Options:
-a, --[no-]all Uninstall all matching versions
-I, --[no-]ignore-dependencies Ignore dependency requirements while......dir DIR Directory to uninstall gem from
-n, --bindir DIR Directory to remove binaries from
-v, --version VERSION Specify version of gem to uninstall
--platform PLATFORM Specify the platform of gem to uninstall
Common Options:
-......グオプションを有効にします
Arguments:
GEMNAME アンインストールする Gem パッケージ名を指定します。
Summary:
Gem パッケージをアンインストールします
Defaults:
--version '>= 0' --no-force --install-dir /usr/lib/ruby/gems/1.8...