762件ヒット
[101-200件を表示]
(0.050秒)
ライブラリ
- drb (24)
-
drb
/ acl (12) - fileutils (36)
-
irb
/ extend-command (36) - mkmf (36)
- rbconfig (12)
-
rubygems
/ commands / update _ command (12) -
rubygems
/ dependency _ installer (96) -
rubygems
/ doc _ manager (12) -
rubygems
/ installer (168) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ source _ index (24) -
rubygems
/ specification (24) -
rubygems
/ uninstaller (72) - shell (6)
-
shell
/ command-processor (12) - un (24)
クラス
- ACL (12)
-
Gem
:: Commands :: UpdateCommand (12) -
Gem
:: DependencyInstaller (96) -
Gem
:: DocManager (12) -
Gem
:: Installer (168) -
Gem
:: RemoteFetcher (12) -
Gem
:: SourceIndex (24) -
Gem
:: Specification (24) -
Gem
:: Uninstaller (72) - Shell (6)
-
Shell
:: CommandProcessor (12)
モジュール
- DRb (24)
- FileUtils (36)
-
Gem
:: InstallUpdateOptions (12) -
IRB
:: ContextExtender (12) -
IRB
:: ExtendCommandBundle (24) - Kernel (60)
- RbConfig (12)
キーワード
-
DEFAULT
_ OPTIONS (12) - DESTDIR (12)
- ReFe (12)
-
app
_ script _ text (12) -
ask
_ if _ ok (12) -
bin
_ dir (24) -
collect
_ method (12) - commands (12)
-
create
_ makefile (12) -
dependencies
_ ok? (12) - download (12)
-
ensure
_ dependency (12) -
exec
_ format (12) -
find
_ gems _ with _ sources (12) -
find
_ spec _ by _ name _ and _ version (12) -
formatted
_ program _ filename (12) -
from
_ installed _ gems (12) -
gather
_ dependencies (12) -
gem
_ home (24) -
gems
_ to _ install (12) -
home
_ install _ warning (12) -
install
_ acl (12) -
install
_ builtin _ commands (6) -
install
_ extend _ commands (24) -
install
_ files (12) -
install
_ id _ conv (12) -
install
_ list (12) -
install
_ rb (12) -
install
_ system _ commands (12) -
install
_ update _ defaults _ str (12) -
installation
_ path (12) -
installation
_ satisfies _ dependency? (12) -
installed
_ gems (12) -
installed
_ spec _ directories (12) -
irb
/ completion (12) -
irb
_ original _ method _ name (12) - mkmf (24)
- new (24)
-
path
_ ok? (12) -
path
_ warning (12) -
rdoc
_ installed? (12) -
ruby 1
. 8 . 4 feature (12) - rubygems (12)
-
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ security (12) - shebang (12)
- spec (24)
- un (12)
-
which
_ to _ update (12) -
windows
_ stub _ script (12)
検索結果
先頭5件
-
Gem
:: Installer # installation _ satisfies _ dependency?(dependency) -> bool (9200.0) -
登録されているソースインデックスが与えられた依存関係を 満たすことができる場合は、真を返します。そうでない場合は偽を返します。
登録されているソースインデックスが与えられた依存関係を
満たすことができる場合は、真を返します。そうでない場合は偽を返します。
@param dependency Gem::Dependency のインスタンスを指定します。 -
Shell
. install _ system _ commands(pre = "sys _ ") -> () (6219.0) -
system_path上にある全ての実行可能ファイルをShellに定義する. メソッ ド名は元のファイル名の頭にpreをつけたものとなる.
...メソッド名の先頭に付加される文字列を指定します。
使用例: ls -l | head -n 5 のような例。
require 'shell'
Shell.install_system_commands
sh = Shell.new
sh.verbose = false
sh.transact {
(sys_ls("-l") | sys_head("-n 5")).each {|l|
puts l
}
}... -
Kernel
# install _ files(mfile , ifiles , map = nil , srcprefix = nil) -> [] (6217.0) -
このメソッドは create_makefile, install_rb が使用します。 内部用のメソッドです。
...このメソッドは create_makefile, install_rb が使用します。
内部用のメソッドです。
@param mfile Makefile を表す File のインスタンスです。
@param ifiles インストールするファイルのリストを指定します。
@param map ???
@param srcprefix ソ... -
rubygems
/ commands / install _ command (6216.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......RDoc を生成します
--[no-]ri インストール時に RI ドキュメントを生成します
-E, --[no-]env-shebang インストールするスクリプトの shebang line を書き換えます(/usr/bin/env)
-f, --[no-]force... -
IRB
:: ExtendCommandBundle . install _ extend _ commands -> object (6213.0) -
定義済みの拡張を読み込みます。
...* irb_push_workspace
* irb_pop_workspace
* irb_load
* irb_require
* irb_source
* irb
* irb_jobs
* irb_fg
* irb_kill
* irb_help
irb/extend-command が require された時にライブラリ内部で自動的
に実行されます。
@see IRB::ExtendCommandBundle.install_extend_commands... -
ACL
# install _ list(list) -> () (6207.0) -
ACL に list で指定したエントリーを追加します。
...ACL に list で指定したエントリーを追加します。
require "drb/acl"
acl = ACL.new
acl.install_list(["deny", "192.168.1.45"])
@param list 追加するエントリー... -
IRB
:: ContextExtender . install _ extend _ commands -> object (6207.0) -
定義済みの拡張を読み込みます。
...で以下のメソッドが利用できるようになります。
* eval_history=
* use_tracer=
* math_mode=
* use_loader=
* save_history=
irb/extend-command が require された時にライブラリ内部で自動的
に実行されます。
@see IRB::ContextExtender.def_extend_command... -
DRb
. # install _ acl(acl) -> () (6201.0) -
サーバ起動時の :acl オプションのデフォルト値を指定します。
サーバ起動時の :acl オプションのデフォルト値を指定します。
内部的には DRb::DRbServer.default_acl を呼び出すだけです。
@see ACL -
DRb
. # install _ id _ conv(idconv) -> () (6201.0) -
サーバ起動時の :id_conv オプションのデフォルト値を指定します。
サーバ起動時の :id_conv オプションのデフォルト値を指定します。
内部的には DRb::DRbServer.default_id_conv を呼び出すだけです。 -
Gem
:: Specification # post _ install _ message -> String (6201.0) -
インストール完了後に表示するメッセージを返します。
インストール完了後に表示するメッセージを返します。