るりまサーチ

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

別のキーワード

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

検索結果

<< < 1 2 3 >>

rubygems/commands/lock_command (66.0)

指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。

...m lock GEMNAME-VERSION [GEMNAME-VERSION ...] [options]
Options:
-
s, --[no-]strict 依存関係を満たせない場合に失敗します
Common Options:
-
h, --help このコマンドのヘルプを表示します
-
V, --[no-]verbose...
...表示を詳細にします
-
q, --quiet 静かに実行します
-
-config-file FILE 指定された設定ファイルを使用します
-
-backtrace バックトレースを表示します
-
-debug...
...ンを指定します
Summary:
特定バージョンの Gem パッケージを使用するために必要な記述を表示します
Description
:
The lock command will generate a list of +gem+ statements that will lock
down
the versions for the gem given in the comman...

rubygems/commands/server_command (48.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 このコマ...
...ヘルプを表示します
-V, --[no-]verbose 表示を詳細にします
-
q, --quiet 静かに実行します
-
-config-file FILE 指定された設定ファイルを使用します
-
-backtrace バック...
...トレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Summary:
Documentation and gem repository HTTP server
Description
:
The server command starts up a web server that hosts the RDoc for your
ins...

rubygems/commands/generate_index_command (36.0)

ある Gem サーバに対するインデックスを作成するためのライブラリです。

...s]
Options:
-
d, --directory=DIRNAME repository base dir containing gems subdir
Common Options:
-
h, --help このコマンドのヘルプを表示します
-
V, --[no-]verbose 表示を詳細にします
-
q, --quiet...
...静かに実行します
-
-config-file FILE 指定された設定ファイルを使用します
-
-backtrace バックトレースを表示します
-
-debug Ruby 自体のデバッグオプションを有効に...
...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 the path given to
the --directory option. When done, it will generate a set of...

rubygems/commands/mirror_command (36.0)

リモートリポジトリをローカルリポジトリにミラーするためのライブラリです。

...r [options]
Common Options:
-
h, --help このコマンドのヘルプを表示します
-
V, --[no-]verbose 表示を詳細にします
-
q, --quiet 静かに実行します
-
-config-file FILE 指定さ...
...ルを使用します
-
-backtrace バックトレースを表示します
-
-debug Ruby 自体のデバッグオプションを有効にします
Summary:
Gem リポジトリをミラーします
Description
:
このコマ...
...ート Gem リポジトリを
ローカルにミラーします。設定ファイルは YAML で以下のように書きます。

-
--
-
from: http://gems.example.com # source repository URI
to: /path/to/mirror # destination directory

...

rubygems/commands/pristine_command (36.0)

インストールされている Gem パッケージを初期状態にするためのライブラリです。

...

Usage: gem pristine [args] [options]
Options:
-
-all インストールされている全ての Gem パッケージを
初期状態に戻します
-
v, --version VERSION 指定したバージョンの G...
...します
Common Options:
-
h, --help このコマンドのヘルプを表示します
-
V, --[no-]verbose 表示を詳細にします
-
q, --quiet 静かに実行します
-
-config-file FILE 指定され...
...-debug Ruby 自体のデバッグオプションを有効にします
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
...

絞り込み条件を変える

rake/gempackagetask (24.0)

Gem Spec ファイルを元にして Gem パッケージを作成するタスクを定義するためのライブラリです。

...タスクを定義します。

: PACKAGE_DIR/NAME-VERSION.gem
Gem パッケージを作成します。

例:
require 'rubygems'

spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.summary = "Ruby based make-like utility."
s.name = 'rake'
s.version...
...PKG_VERSION
s.requirements << 'none'
s.require_path = 'lib'
s.autorequire = 'rake'
s.files = PKG_FILES
s.description = <<EOF
Rake is a Make-like program implemented in Ruby. Tasks
and dependencies are specified in standard Ruby syntax.
EOF
end

Rake::GemP...
<< < 1 2 3 >>