るりまサーチ

最速Rubyリファレンスマニュアル検索!
143件ヒット [1-100件を表示] (0.128秒)
トップページ > クエリ:I[x] > クエリ:ruby[x] > クエリ:u[x] > クエリ:install[x]

別のキーワード

  1. rbconfig ruby
  2. fiddle ruby_free
  3. fiddle build_ruby_platform
  4. rake ruby
  5. rubygems/defaults ruby_engine

検索結果

<< 1 2 > >>

FileUtils.#install(src, dest, options = {}) -> () (30243.0)

src と dest の内容が違うときだけ src を dest にコピーします。

...ram options :preserve, :noop, :verbose, :mode が指定できます。
c:FileUtils#options

//emlist[][ruby]{
require 'fileutils'
FileUtils.install('ruby', '/usr/local/bin/ruby', mode: 0755, verbose: true)
FileUtils.install('lib.rb', '/usr/local/lib/ruby/site_ruby', verbose: true)
//}...
...am options :preserve, :noop, :verbose, :mode, :owner, :group が指定できます。
c:FileUtils#options

//emlist[][ruby]{
require 'fileutils'
FileUtils.install('ruby', '/usr/local/bin/ruby', mode: 0755, verbose: true)
FileUtils.install('lib.rb', '/usr/local/lib/ruby/site_ruby', ver...
...bose: true)
//}...

rubygems/commands/install_command (24066.0)

Gem パッケージをローカルリポジトリにインストールするためのライブラリです。

...ライブラリです。

U
sage: gem install GEMNAME [GEMNAME ...] [options] -- --build-flags [options]
Options:
--platform PLATFORM 指定されたプラットフォームの Gem パッケージをインストールします
-v, --version VERSION 指定さ...
...れたバージョンの Gem パッケージをインストールします
Install
/Update Options:
-i, --install-dir DIR Gem パッケージのインストー先を指定します
-n, --bindir DIR Gem パッケージに含まれるバイナリファイル...
...--ignore-dependencies 依存している Gem パッケージをインストールしません
-y, --include-dependencies 依存している Gem パッケージをインストールします
--[no-]format-executable Make installed executable names match ruby....

rubygems/commands/uninstall_command (24036.0)

Gem パッケージをアンインストールするためのライブラリです。

...

U
sage: gem uninstall GEMNAME [GEMNAME ...] [options]
Options:
-a, --[no-]all Uninstall all matching versions
-I, --[no-]ignore-dependencies Ignore dependency requirements while
u
ninstalling
-x, --[no-]executables Unin...
...l applicable executables without
confirmation
-i, --install-dir DIR Directory to uninstall gem from
-n, --bindir DIR Directory to remove binaries from
-v, --version VERSION Specify version of gem to uninstall...
...
-q, --quiet 静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッ...

rubygems/dependency_installer (24000.0)

ある Gem が依存している Gem を同時にインストールするためのライブラリです。

ある Gem が依存している Gem を同時にインストールするためのライブラリです。

rubygems/install_update_options (24000.0)

Gem::Command で使用するインストールとアップデートに関するオプションを 扱うためのモジュールを定義したライブラリです。

Gem::Command で使用するインストールとアップデートに関するオプションを
扱うためのモジュールを定義したライブラリです。

絞り込み条件を変える

rubygems/installer (24000.0)

RubyGems の Gem をインストールするためのライブラリです。

...RubyGems の Gem をインストールするためのライブラリです。...

rubygems/uninstaller (24000.0)

Gem のアンインストールを行うためのライブラリです。

Gem のアンインストールを行うためのライブラリです。

rubygems/security (18084.0)

このライブラリは暗号署名を RubyGems パッケージに使用するために使用します。

...このライブラリは暗号署名を RubyGems パッケージに使用するために使用します。

=== 署名付きの Gem パッケージ

==== 目次

* 概要
* 解説
* コマンドラインオプション
* OpenSSL リファレンス
* Bugs / TODO
* 作者について

==== 概...
...とそれらを作成することができます。

# gemmaster@example.com のための秘密鍵と証明書を作成します
$ gem cert --build gemmaster@example.com

あなたのコンピュータの性能にもよりますが、これには 5 秒から 10 分程度かかります。
(公...
... Imlib2-Ruby-0.5.0.gem
data.tar.gz
data.tar.gz.sig
metadata.gz
metadata.gz.sig

さあ、署名を検証してみましょう。以下のように "-P HighSecurity" オプションを
付けて Gem をインストールしてみてください。

# install the gem with using the secu...

rubygems/commands/pristine_command (18012.0)

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

...ライブラリです。

U
sage: gem pristine [args] [options]
Options:
--all インストールされている全ての Gem パッケージを
初期状態に戻します
-v, --version VERSION 指定し...
...
-q, --quiet 静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--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:
The pristine command compares the installed gems with the contents of...

FileUtils.collect_method(opt) -> Array (9012.0)

与えられたオプションを持つメソッド名の配列を返します。

...与えられたオプションを持つメソッド名の配列を返します。

@param opt オプション名をシンボルで指定します。

//emlist[][ruby]{
require 'fileutils'
FileUtils.collect_method(:preserve) # => ["cp", "cp_r", "copy", "install"]
//}...

絞り込み条件を変える

<< 1 2 > >>