rubygems.patch
| refm/api/src/rubygems/user_interaction.rd (working copy) | ||
|---|---|---|
| 36 | 36 | |
| 37 | 37 |
デフォルトの UI を返します。 |
| 38 | 38 | |
| 39 |
@see [[m:Gem::DefaultUserInteraction.#ui]]
|
|
| 39 |
@see [[m:Gem::DefaultUserInteraction.ui]] |
|
| 40 | 40 | |
| 41 | 41 |
--- ui=(new_ui) |
| 42 | 42 |
#@todo |
| ... | ... | |
| 45 | 45 | |
| 46 | 46 |
@param new_ui 新しい UI を指定します。 |
| 47 | 47 | |
| 48 |
@see [[m:Gem::DefaultUserInteraction.#ui=]]
|
|
| 48 |
@see [[m:Gem::DefaultUserInteraction.ui=]] |
|
| 49 | 49 | |
| 50 | 50 |
--- use_ui(new_ui){ ... }
|
| 51 | 51 |
#@todo |
| ... | ... | |
| 54 | 54 | |
| 55 | 55 |
@param new_ui 新しい UI を指定します。 |
| 56 | 56 | |
| 57 |
@see [[m:Gem::DefaultUserInteraction.#use_ui]]
|
|
| 57 |
@see [[m:Gem::DefaultUserInteraction.use_ui]] |
|
| 58 | 58 | |
| 59 | 59 |
= module Gem::UserInteraction |
| 60 | 60 |
include Gem::DefaultUserInteraction |
| refm/api/src/rubygems/specification.rd (working copy) | ||
|---|---|---|
| 28 | 28 |
--- _dump -> String |
| 29 | 29 |
#@todo |
| 30 | 30 | |
| 31 |
重要なインスタンス変数のみを [[m:Marshal.dump]] します。 |
|
| 31 |
重要なインスタンス変数のみを [[m:Marshal.#dump]] します。
|
|
| 32 | 32 | |
| 33 |
@see [[m:Marshal.dump]] |
|
| 33 |
@see [[m:Marshal.#dump]]
|
|
| 34 | 34 | |
| 35 | 35 |
--- add_bindir(executables) -> Array | nil |
| 36 | 36 |
#@todo |
| refm/api/src/rubygems/source_index.rd (working copy) | ||
|---|---|---|
| 127 | 127 |
--- spec_dirs -> [String] |
| 128 | 128 |
#@todo |
| 129 | 129 | |
| 130 |
[[m:Gem::SourceIndex#reflesh!]] で自身を更新する時に使用するディレクトリを取得します。
|
|
| 130 |
[[m:Gem::SourceIndex#refresh!]] で自身を更新する時に使用するディレクトリを取得します。
|
|
| 131 | 131 | |
| 132 | 132 |
--- spec_dirs=(dirs) |
| 133 | 133 |
#@todo |
| 134 | 134 | |
| 135 |
[[m:Gem::SourceIndex#reflesh!]] で自身を更新する時に使用するディレクトリを設定します。
|
|
| 135 |
[[m:Gem::SourceIndex#refresh!]] で自身を更新する時に使用するディレクトリを設定します。
|
|
| 136 | 136 | |
| 137 | 137 |
--- specification(full_name) -> Gem::Specification | nil |
| 138 | 138 |
#@todo |
| refm/api/src/rubygems/remote_fetcher.rd (working copy) | ||
|---|---|---|
| 59 | 59 | |
| 60 | 60 |
URI 文字列をエンコードした文字列を返します。 |
| 61 | 61 | |
| 62 |
@see [[m:URI.#escape]]
|
|
| 62 |
@see [[m:URI.escape]] |
|
| 63 | 63 | |
| 64 | 64 |
--- unescape(str) -> String |
| 65 | 65 |
#@todo |
| 66 | 66 | |
| 67 | 67 |
URI 文字列をデコードした文字列を返します。 |
| 68 | 68 | |
| 69 |
@see [[m:URI.#unescape]]
|
|
| 69 |
@see [[m:URI.unescape]] |
|
| 70 | 70 | |
| 71 | 71 |
--- get_proxy_from_env -> URI | nil |
| 72 | 72 |
#@todo |
| refm/api/src/rubygems/commands/lock_command.rd (working copy) | ||
|---|---|---|
| 1 | 1 |
require rubygems/command |
| 2 | 2 | |
| 3 | 3 |
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために |
| 4 |
必要な [[Kernel.#gem]] メソッドの呼び出し方法を文字列で出力します。
|
|
| 4 |
必要な [[m:Kernel#gem]] メソッドの呼び出し方法を文字列で出力します。
|
|
| 5 | 5 | |
| 6 | 6 |
Usage: gem lock GEMNAME-VERSION [GEMNAME-VERSION ...] [options] |
| 7 | 7 |
Options: |
| ... | ... | |
| 49 | 49 |
= class Gem::Commands::LockCommand < Gem::Command |
| 50 | 50 | |
| 51 | 51 |
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために |
| 52 |
必要な [[Kernel.#gem]] メソッドの呼び出し方法を文字列で出力します。
|
|
| 52 |
必要な [[m:Kernel#gem]] メソッドの呼び出し方法を文字列で出力します。
|
|
| 53 | 53 | |
| 54 | 54 |
== Public Instance Methods |
| 55 | 55 | |