るりまサーチ

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

別のキーワード

  1. specification executables
  2. specification executable=
  3. specification executable
  4. specification test_files=

ライブラリ

クラス

検索結果

Gem::Specification#executables=(executables) (21100.0)

実行可能ファイル名のリストをセットします。

実行可能ファイル名のリストをセットします。

@param executables 実行可能ファイル名のリストを指定します。

rubygems (36.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 Auth...