72件ヒット
[1-72件を表示]
(0.028秒)
別のキーワード
種類
- インスタンスメソッド (60)
- ライブラリ (12)
ライブラリ
クラス
-
Gem
:: Specification (60)
キーワード
-
add
_ dependency (12) -
add
_ development _ dependency (12) -
add
_ runtime _ dependency (12) -
rake
/ gempackagetask (12) - requirements= (12)
検索結果
先頭5件
- Gem
:: Specification # requirements -> Array - Gem
:: Specification # requirements=(informations) - Gem
:: Specification # add _ dependency(gem , *requirements) -> [Gem :: Dependency] - Gem
:: Specification # add _ runtime _ dependency(gem , *requirements) -> [Gem :: Dependency] - Gem
:: Specification # add _ development _ dependency(gem , *requirements) -> [Gem :: Dependency]
-
Gem
:: Specification # requirements -> Array (21101.0) -
この Gem パッケージを動作させるのに必要な条件を返します。 これはユーザのためのシンプルな情報です。
この Gem パッケージを動作させるのに必要な条件を返します。
これはユーザのためのシンプルな情報です。 -
Gem
:: Specification # requirements=(informations) (9101.0) -
この Gem パッケージを動作させるのに必要な条件をセットします。 これはユーザのためのシンプルな情報をセットします。
この Gem パッケージを動作させるのに必要な条件をセットします。
これはユーザのためのシンプルな情報をセットします。
@param informations 情報を文字列の配列で指定します。 -
Gem
:: Specification # add _ dependency(gem , *requirements) -> [Gem :: Dependency] (3114.0) -
この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。
...2.0"
//}
@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。
@param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。
@see Gem::Specification#add_development_dependency, Gem::Dependency... -
Gem
:: Specification # add _ runtime _ dependency(gem , *requirements) -> [Gem :: Dependency] (3114.0) -
この gem の RUNTIME 依存性を追加します。 実行時に必要となる gem を指定します。
...2.0"
//}
@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。
@param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。
@see Gem::Specification#add_development_dependency, Gem::Dependency... -
Gem
:: Specification # add _ development _ dependency(gem , *requirements) -> [Gem :: Dependency] (3113.0) -
この gem の DEVELOPMENT 依存性を追加します。 この gem の開発時に必要となる gem を指定します。
...1.6.12"
//}
@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。
@param requirements バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。
@see Gem::Specification#add_runtime_dependency, Gem::Dependency... -
rake
/ gempackagetask (12.0) -
Gem Spec ファイルを元にして 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'
s.require_path = 'lib'
s.autorequire =...