36件ヒット
[1-36件を表示]
(0.060秒)
キーワード
- rdoc (12)
- rubygems (12)
-
rubygems
/ commands / pristine _ command (12)
検索結果
-
rubygems
/ commands / pristine _ command (6007.0) -
インストールされている Gem パッケージを初期状態にするためのライブラリです。
...インストールされている Gem パッケージを初期状態にするためのライブラリです。
Usage: gem pristine [args] [options]
Options:
--all インストールされている全ての Gem パッケージを......します
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 compares 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 stubs
for the gem are regenerated.... -
rdoc (73.0)
-
RDoc は Ruby のドキュメント生成を行うためのライブラリです。rdoc という ドキュメント生成のためのコマンドも含んでいます。
...(例えば、README など)を置きたければ、それをコ
マンドラインの最初に置くだけでもかまいません。
: --merge
ri の出力を生成するとき、出力ディレクトリにすでにファイルが存在すれば、
そのファイルを上書きせずに、......ジを表示しません。
: --ri, --ri-site, and --ri-system
ri で読める出力を生成します。デフォルトでは --ri を指定すると
~/.rdoc に出力されますが、--ri-site で $datadir/ri/<ver>/site
に、--ri-system で $datadir/ri/<ver>/system に出力されます......。これらす
べてはうしろに指定した --op を上書きします。デフォルトのディレクトリ
は ri のデフォルトのサーチパスです。
: --show-hash
コメント内の name というところからインスタンスメソッドへのハイパーリ
ンク... -
rubygems (37.0)
-
RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。
...= ['Hello Author']
s.email = 'hello_author@example.com'
s.homepage = 'http://example.com/hello/'
s.description = 'hello description'
end
//}
: name
この Gem の名前を指定します。
: version
この Gem のバージョンを指定します。
: summ......ail
この Gem の作者の連絡先メールアドレスを指定します。
: homepage
この Gem のウェブサイトの URI を指定します。
: description
この Gem の長い説明を指定します。
実行可能なファイル (コマンド) を含む場合の gemspec は以下......rs = ['Hello Author']
s.email = 'hello@example.com'
s.homepage = 'http://example.com/hello'
s.description = 'hello description'
end
//}
ライブラリの例に加えて executables を追加しています。
また、以下のように Rakefile にタ...