るりまサーチ

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

別のキーワード

  1. _builtin -
  2. open-uri open
  3. irb/input-method new
  4. irb/input-method gets
  5. matrix -

ライブラリ

クラス

キーワード

検索結果

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

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

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

Gem::Specification#add_bindir(executables) -> Array | nil (3207.0)

実行コマンドの格納場所を返します。

...実行コマンドの格納場所を返します。

@param executables 実行コマンド名を格納した配列を指定します。...

rubygems/commands/install_command (204.0)

Gem パッケージをローカルリポジトリにインストールするためのライブラリです。

...す。

Usage: gem install GEMNAME [GEMNAME ...] [options] -- --build-flags [options]
Options:
-
-platform PLATFORM 指定されたプラットフォームの Gem パッケージをインストールします
-
v, --version VERSION 指定されたバージョ...
...ます
Install/Update Options:
-
i, --install-dir DIR Gem パッケージのインストー先を指定します
-
n, --bindir DIR Gem パッケージに含まれるバイナリファイルの配置先を指定します
-
d, --[no-]rdoc...
...-f, --[no-]force 依存関係のチェックをバイパスして強制的にインストールします
-
t, --[no-]test インストール時にユニットテストを実行します
-
w, --[no-]wrappers Use bin wrappers for executables...

rubygems (120.0)

RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。

...

$ gem help

RubyGems は Ruby のための高機能なパッケージ管理ツールです。
これはより多くの情報へのポインタを含んでいる基本的なヘルプメッセージです。

使用方法:
gem -h/--help
gem -v/--version...
...nts...] [options...]

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

さらにヘルプ:
gem help commands 全ての 'gem' コマンドをリストアップします
gem help examples...
...場合の 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...