るりまサーチ

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

別のキーワード

  1. specfetcher fetch_spec
  2. installer spec
  3. oldformat spec
  4. format spec
  5. uninstaller spec

検索結果

Gem::Specification#executables -> [String] (21101.0)

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

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

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

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

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

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

Gem::Uninstaller#remove_executables(gemspec) (6201.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 を扱うためのクラスやモジュールが定義されているライブラリです。

...ersion
gem command [arguments...] [options...]

例:
gem install rake
gem list --local
gem build package.gemspec
gem help install

さらにヘルプ:
gem help commands 全ての 'gem' コマンドをリストアップしま...
...作成する

作成した gemspec ファイルを元にして Gem パッケージを簡単に作成することができます。

$ gem build <gemspec filename>

最小の gemspec は以下のようになります。ビルドするために必要な最小の gemspec なので出来上がるの...
...場合の gemspec は以下のようになります。

//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...

絞り込み条件を変える