60件ヒット
[1-60件を表示]
(0.025秒)
別のキーワード
種類
- インスタンスメソッド (48)
- ライブラリ (12)
ライブラリ
-
rubygems
/ specification (36) -
rubygems
/ uninstaller (12)
クラス
-
Gem
:: Specification (36) -
Gem
:: Uninstaller (12)
キーワード
-
add
_ bindir (12) - executables= (12)
-
remove
_ executables (12) - rubygems (12)
検索結果
先頭5件
-
Gem
:: Specification # executables -> [String] (21101.0) -
実行可能ファイル名のリストを返します。
実行可能ファイル名のリストを返します。 -
Gem
:: Specification # executables=(executables) (9208.0) -
実行可能ファイル名のリストをセットします。
...実行可能ファイル名のリストをセットします。
@param executables 実行可能ファイル名のリストを指定します。... -
Gem
:: Uninstaller # remove _ executables(gemspec) (6123.0) -
与えられた Gem::Specification に対応する実行ファイルを削除します。
...与えられた Gem::Specification に対応する実行ファイルを削除します。
@param gemspec アンインストール指定されている Gem の Gem::Specification を指定します。... -
Gem
:: Specification # add _ bindir(executables) -> Array | nil (3107.0) -
実行コマンドの格納場所を返します。
...実行コマンドの格納場所を返します。
@param executables 実行コマンド名を格納した配列を指定します。... -
rubygems (42.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...タデータのみを含む Gem パッケージです。また、いくつかの警告が表示されます。
//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
end
//}
実用的なライブラリを作成するため......示します。
警告メッセージが出力されないようにいくつか設定を追加しています。
//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['l......になります。
//emlist[gemspec][ruby]{
Gem::Specification.new do |s|
s.name = 'hello'
s.version = '0.0.0'
s.summary = 'hello summary'
s.files = ['bin/hello', 'lib/hello.rb']
s.executables = ['hello']
s.authors = ['Hello A...