1147件ヒット
[1-100件を表示]
(0.046秒)
ライブラリ
- ビルトイン (48)
- fileutils (12)
-
irb
/ extend-command (12) - mkmf (36)
- pty (48)
-
rubygems
/ command (96) -
rubygems
/ command _ manager (24) -
rubygems
/ commands / build _ command (24) -
rubygems
/ commands / dependency _ command (84) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / update _ command (24) -
rubygems
/ commands / which _ command (24) - shell (30)
-
shell
/ command-processor (72) -
shell
/ filter (12) -
shell
/ system-command (102)
クラス
-
Gem
:: Command (96) -
Gem
:: CommandManager (24) -
Gem
:: Commands :: BuildCommand (24) -
Gem
:: Commands :: DependencyCommand (72) -
Gem
:: Commands :: UpdateCommand (24) -
Gem
:: Commands :: WhichCommand (24) - Shell (30)
-
Shell
:: CommandProcessor (72) -
Shell
:: Filter (12) -
Shell
:: SystemCommand (96)
モジュール
- FileUtils (12)
-
IRB
:: ExtendCommandBundle (12) - Kernel (84)
- PTY (48)
キーワード
- DependencyCommand (12)
-
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 3
. 0 . 0 (5) -
OVERRIDE
_ PRIVATE _ ONLY (12) - QueryCommand (12)
- Rubyで使われる記号の意味(正規表現の複雑な記号は除く) (12)
- SystemCommand (6)
- Win32ネイティブ版Rubyの互換性問題 (12)
- active? (6)
-
add
_ extra _ args (12) - arguments (12)
-
build
_ args (12) -
command
_ names (12) - commands (12)
-
def
_ system _ command (12) - directory? (6)
-
do
_ rubygems _ update (12) - each (6)
- execute (12)
-
extra
_ args (12) -
find
_ command _ possibilities (12) -
find
_ gems (12) -
find
_ paths (12) -
find
_ reverse _ dependencies (12) -
find
_ system _ command (18) - flush (6)
- ftype (6)
-
gem
_ paths (12) -
get
_ all _ gem _ names (12) - getpty (24)
- input= (6)
-
install
_ system _ commands (12) - kill (6)
-
load
_ gemspecs (12) - mkdir (6)
- name (6)
- new (6)
- notify (18)
-
print
_ dependencies (12) -
ruby 1
. 8 . 4 feature (12) -
ruby 1
. 9 feature (12) - rubygems (12)
-
rubygems
/ command (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) -
rubygems
/ server (12) -
rubygems
/ version _ option (12) -
shell
/ system-command (6) - spawn (24)
-
specific
_ extra _ args (12) - start (6)
-
start
_ export (6) -
start
_ import (6) - sticky? (6)
- summary (12)
- summary= (12)
-
super
_ each (6) - symlink (6)
- symlink? (6)
- system (66)
- terminate (6)
-
try
_ do (24) -
undef
_ system _ command (12) - usage (12)
- wait? (6)
-
which
_ to _ update (12) -
win32
/ registry (12) - xsystem (12)
- yaml? (12)
検索結果
先頭5件
-
Shell
:: SystemCommand # command -> String (24101.0) -
@todo
@todo
コマンド名を返します。 -
rubygems
/ commands / generate _ index _ command (18012.0) -
ある Gem サーバに対するインデックスを作成するためのライブラリです。
...ンデックスを作成するためのライブラリです。
Usage: gem generate_index [options]
Options:
-d, --directory=DIRNAME repository base dir containing gems subdir
Common Options:
-h, --help このコマンドのヘルプを表示し......Ruby 自体のデバッグオプションを有効にします
Summary:
Generates the index files for a gem server directory
Description:
The generate_index command creates a set of indexes for serving gems
statically. The command expects a 'gems' directory under th......e path given to
the --directory option. When done, it will generate a set of files like
this:
gems/ # .gem files you want to
index
quick/index
quick/index.rz # quick index manifest... -
rubygems
/ commands / lock _ command (18012.0) -
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
...Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME ロックする Gem パッケージの名前を指定します
VERSION ロックする Gem パッケージのバージョンを指定します
Summary:
特定バ......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 exact
versions in the requirements list to ensure that the gems loaded will always
be consistent. A full......enerated.
Example:
gemlock rails-1.0.0 > lockdown.rb
will produce in lockdown.rb:
require "rubygems"
gem 'rails', '= 1.0.0'
gem 'rake', '= 0.7.0.1'
gem 'activesupport', '= 1.2.5'
gem 'activerecord', '= 1.13.2'... -
rubygems
/ commands / pristine _ command (18012.0) -
インストールされている Gem パッケージを初期状態にするためのライブラリです。
...uby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME gem to restore to pristine condition (unless --all)
Summary:
Restores installed gems to pristine condition from files located in the gem
cache
Description:
The pristine command......pares the installed gems with the contents of the
cached gem and restores any files that don't match the cached gem's copy.
If you have made modifications to your installed gems, the pristine command
will revert them. After all the gem's files have been checked all bin stub......s
for the gem are regenerated.
If the cached gem cannot be found, you will need to use `gem install` to
revert the gem.
Defaults:
--all... -
rubygems
/ commands / help _ command (18006.0) -
Gem コマンドに関するヘルプを提供するためのライブラリです。
...debug Ruby 自体のデバッグオプションを有効にします
Arguments:
commands gem コマンドのサブコマンドの一覧を表示します
examples gem コマンドの使用例を表示します
<command> 指定されたコマ......ンドのヘルプを表示します
Summary:
gem コマンドに関するヘルプを提供します... -
rubygems
/ commands / install _ command (18006.0) -
Gem パッケージをローカルリポジトリにインストールするためのライブラリです。
...プラットフォーム上では無効です
-P, --trust-policy POLICY Specify gem trust policy
--ignore-dependencies 依存している Gem パッケージをインストールしません
-y, --include-dependencies 依存している Gem パッケージ......をインストールします
--[no-]format-executable Make installed executable names match ruby.
If ruby is ruby18, foo_exec will be
foo_exec18
Local/Remote Options:
-l, --local......d for switching to bulk
synchronization (default 1000)
--source URL Gem パッケージのリモートリポジトリの URL を指定します
--[no-]http-proxy [URL] リモートの操作に HTTP プロクシを使用... -
rubygems
/ commands / server _ command (18006.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 このコ......--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Documentation and gem repository HTTP server
Description:
The server command starts up a web server that hosts the RDoc for your
installed gems and can operate as......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 --source
http://gem_server_host:8808`
Defaults:
--port 8808 --dir /usr/lib/ruby/gems/1.8 --no-daemon... -
rubygems
/ commands / build _ command (18000.0) -
Gem パッケージをビルドするためのライブラリです。
...ます
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMSPEC_FILE Gem パッケージをビルドするのに必要な gemspec ファイル名を指定します
Summary:
gemspec ファイルから Gem パッケ... -
rubygems
/ commands / cert _ command (18000.0) -
Gem パッケージの証明書や署名の設定を管理するためのライブラリです。
...を作成します
-C, --certificate CERT --sign で使用する証明書を指定します
-K, --private-key KEY --sign で使用する秘密鍵を指定します
-s, --sign NEWCERT 証明書に秘密鍵で署名します
Co......定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Manage RubyGems certificates and signing settings...