1008件ヒット
[1-100件を表示]
(0.084秒)
ライブラリ
- fileutils (12)
-
irb
/ extend-command (24) -
rubygems
/ commands / build _ command (72) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (84) -
rubygems
/ commands / environment _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / help _ command (36) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (36) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / rdoc _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / stale _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ commands / unpack _ command (24) -
rubygems
/ commands / update _ command (36) -
rubygems
/ commands / which _ command (48) - shell (6)
-
shell
/ command-processor (18)
クラス
モジュール
- FileUtils (12)
-
IRB
:: ContextExtender (12) -
IRB
:: ExtendCommandBundle (12)
キーワード
- BuildCommand (12)
- CertCommand (12)
- CheckCommand (12)
- CleanupCommand (12)
- ContentsCommand (12)
- DependencyCommand (12)
- EXAMPLES (12)
- EXT (12)
- EnvironmentCommand (12)
- FetchCommand (12)
- GenerateIndexCommand (12)
- HelpCommand (12)
- InstallCommand (12)
- ListCommand (12)
- LockCommand (12)
- MirrorCommand (12)
- OutdatedCommand (12)
- PLATFORMS (12)
- PristineCommand (12)
- QueryCommand (12)
- RdocCommand (12)
- SearchCommand (12)
- ServerCommand (12)
- SourcesCommand (12)
- SpecificationCommand (12)
- StaleCommand (12)
- UninstallCommand (12)
- UnpackCommand (12)
- UpdateCommand (12)
- WhichCommand (12)
- arguments (24)
- complain (12)
-
def
_ builtin _ commands (6) -
do
_ rubygems _ update (12) - execute (24)
-
find
_ gems (12) -
find
_ paths (12) -
find
_ reverse _ dependencies (12) -
gem
_ paths (12) -
get
_ path (12) -
install
_ builtin _ commands (6) -
install
_ extend _ commands (24) -
install
_ system _ commands (12) -
load
_ gemspecs (12) -
print
_ dependencies (12) -
ruby 1
. 8 . 3 feature (12) - rubygems (12)
-
rubygems
/ command _ manager (12) -
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / environment _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / help _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / rdoc _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / stale _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ commands / unpack _ command (12) -
rubygems
/ commands / update _ command (12) -
rubygems
/ commands / which _ command (12) -
spec
_ path (12) - usage (24)
-
which
_ to _ update (12) - yaml? (12)
- コマンド (12)
検索結果
先頭5件
-
FileUtils
. commands -> Array (24207.0) -
何らかのオプションを持つメソッド名の配列を返します。
...何らかのオプションを持つメソッド名の配列を返します。
//emlist[][ruby]{
require 'fileutils'
FileUtils.commands # => ["chmod", "cp", "cp_r", "install", ...]
//}... -
rubygems
/ commands / cleanup _ command (24000.0) -
ローカルにインストールされている古い Gem を削除するライブラリです。
...ローカルにインストールされている古い Gem を削除するライブラリです。
Usage: gem cleanup [GEMNAME ...] [options]
Options:
-d, --dryrun
Common Options:
-h, --help このコマンドのヘルプを表示します
-V, --[no......--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME 削除する Gem パッケージの名前を指定します
Summary:
ロ......ーカルリポジトリにインストールされている古いバージョンの
Gem パッケージを削除します
Defaults:
--no-dryrun... -
rubygems
/ commands / server _ command (18030.0) -
ローカルにインストールされている Gem パッケージとそのドキュメントを HTTP サーバに 載せて公開するためのライブラリです。
...ためのライブラリです。
Usage: gem server [options]
Options:
-p, --port=PORT port to listen on
-d, --dir=GEMDIR directory from which to serve gems
--[no-]daemon run as a daemon
Common Options:
-h, --help......acktrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Documentation and gem repository HTTP server
Description:
The server command starts up a web server tha......installed gems and can operate as a server for installation of gems on other
machines.
The cache files for installed gems must exist to use the server as a source
for gem installation.
To install gems from a running server, use `gem install GEMNAME --sourc... -
rubygems
/ commands / generate _ index _ command (18024.0) -
ある Gem サーバに対するインデックスを作成するためのライブラリです。
...m サーバに対するインデックスを作成するためのライブラリです。
Usage: gem generate_index [options]
Options:
-d, --directory=DIRNAME repository base dir containing gems subdir
Common Options:
-h, --help このコマン......backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Generates the index files for a gem server directory
Description:
The generate_index command creates a......exes for serving gems
statically. The command expects a 'gems' directory under the path given to
the --directory option. When done, it will generate a set of files like
this:
gems/ # .gem files you want to
index
quic... -
rubygems
/ commands / lock _ command (18012.0) -
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
...存する Gem を使用するために
必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
Usage: gem lock GEMNAME-VERSION [GEMNAME-VERSION ...] [options]
Options:
-s, --[no-]strict 依存関係を満たせない場合に失敗します......た設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME ロックする Gem パッケージの名前......mary:
特定バージョンの Gem パッケージを使用するために必要な記述を表示します
Description:
The lock command will generate a list of +gem+ statements that will lock
down
the versions for the gem given in the command line. It will specify exac... -
rubygems
/ commands / cert _ command (18006.0) -
Gem パッケージの証明書や署名の設定を管理するためのライブラリです。
...Gem パッケージの証明書や署名の設定を管理するためのライブラリです。
Usage: gem cert [options]
Options:
-a, --add CERT 信頼された証明書を追加します
-l, --list 信頼されている証明書の一覧......します
-b, --build EMAIL_ADDR EMAIL_ADDR に対する自己署名証明書と秘密鍵
を作成します
-C, --certificate CERT --sign で使用する証明書を指定します
-K, --private-key KEY --sign......定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Manage RubyGems certificates and signing settings... -
rubygems
/ commands / check _ command (18006.0) -
インストールされている Gem パッケージを検証するためのライブラリです。
...ッケージを検証するためのライブラリです。
Usage: gem check [options]
Options:
--verify FILE 内部のチェックサムにより Gem パッケージを検証します
-a, --alien 管理されていないパッケージを......定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
インストールされている Gem パッケー... -
rubygems
/ commands / contents _ command (18006.0) -
インストールされている Gem パッケージに含まれているファイルリストを表示するためのライブラリです。
...を表示するためのライブラリです。
Usage: gem contents GEMNAME [options]
Options:
-v, --version VERSION 指定されたバージョンの Gem パッケージの内容を表示します
-s, --spec-dir a,b,c 指定されたパス以下にある G......ます
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME Gem パッケージの名前を指定します
Summary:
インス......トールされている Gem パッケージに含まれるファイルの一覧を表示します
Defaults:
--no-lib-only... -
rubygems
/ commands / help _ command (18006.0) -
Gem コマンドに関するヘルプを提供するためのライブラリです。
...Gem コマンドに関するヘルプを提供するためのライブラリです。
Usage: gem help ARGUMENT [options]
Common Options:
-h, --help このコマンドのヘルプを表示します
-V, --[no-]verbose 表示を詳細にします......--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
commands gem コマンドのサブコマンドの一覧を表示します
examples......gem コマンドの使用例を表示します
<command> 指定されたコマンドのヘルプを表示します
Summary:
gem コマンドに関するヘルプを提供します...