るりまサーチ

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

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file truncate
  4. file lstat
  5. file umask

検索結果

<< 1 2 > >>

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

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

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

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

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

rubygems/commands/install_command (12066.0)

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

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

Usage: gem install GEMNAME [GEMNAME ...] [options] -- --build-flags [options]
Options:
--platform PLATFORM 指定されたプラットフォームの Gem パッケ...
...ている Gem パッケージをインストールします
--[no-]format-executable Make installed executable names match ruby.
If ruby is ruby18, foo_exec will be
foo_exec18
Local/Remote Options:...
...静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし...

rubygems/commands/uninstall_command (12036.0)

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

...em uninstall GEMNAME [GEMNAME ...] [options]
Options:
-a, --[no-]all Uninstall all matching versions
-I, --[no-]ignore-dependencies Ignore dependency requirements while
uninstalling
-x, --[no-]executables Uninstall appl...
...of gem to uninstall
Common Options:
-h, --help このコマンドのヘルプを表示します
-V, --[no-]verbose 表示を詳細にします
-q, --quiet 静かに実行します
--config-file FILE...
...た設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME アンインストールする Gem パッケー...

Gem::Installer#formatted_program_filename(filename) -> String (9216.0)

Ruby のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。

...
Ruby
のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。

@param filename 実行ファイルのファイル名を指定します。...

Kernel#install_rb(mfile, dest, srcdir = nil) -> Array (6213.0)

このメソッドは create_makefile が使用します。 内部用のメソッドです。

...このメソッドは create_makefile が使用します。
内部用のメソッドです。

ディレクトリ srcdir/lib 配下の Ruby スクリプト (*.rb ファイル)
を dest にインストールするための Makefile 規則を mfile に出力します。

srcdir/lib のディレクト...
...リ構造はそのまま dest 配下に反映されます。

@param mfile Makefile を表す File のインスタンスです。

@param dest インストールする先のディレクトリを指定します。

@param srcdir ソースディレクトリを指定します。...

絞り込み条件を変える

Kernel#create_makefile(target, srcprefix = nil) -> true (6118.0)

@todo

...@todo

Kernel#have_library などの各種検査の結果を元に、拡張ライブラリを
ビルドするための Makefile を生成します。

extconf.rb は普通このメソッドの呼び出しで終ります。

@param target ターゲットとなる拡張ライブラリの名前を指...
...た Makefile はそのディレクトリ構造に従い
ます。
例えば、'test/foo' を指定した場合、拡張ライブラリは
'test' ディレクトリにインストールされます。この拡張ライブ
ラリを Ruby スク...
...test/
foo.c

このようにします。

require 'mkmf'
create_makefile('test/foo', 'test')

このようにして作った Makefile で 'make install' すると拡張ライブラリは、
以下のパスにインストールされます。

/path/to/ruby/sitearchdir/test/foo.so...

rubygems/commands/server_command (6036.0)

ローカルにインストールされている Gem パッケージとそのドキュメントを HTTP サーバに 載せて公開するためのライブラリです。

...静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし...
...for your
install
ed gems and can operate as a server for installation of gems on other
machines.

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 GEMNAM...
...E --source
http://gem_server_host:8808`
Defaults:
--port 8808 --dir /usr/lib/ruby/gems/1.8 --no-daemon...

rubygems/commands/pristine_command (6024.0)

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

...静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし...
...(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....
...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.

If the cached gem cannot be found, you will need to use `gem install` to
revert the gem....

ruby 1.8.4 feature (4775.0)

ruby 1.8.4 feature ruby 1.8.4 での ruby 1.8.3 からの変更点です。

...ruby 1.8.4 feature
ruby
1.8.4 での ruby 1.8.3 からの変更点です。

掲載方針

*バグ修正の影響も含めて動作が変わるものを収録する。
*単にバグを直しただけのものは収録しない。
*ライブラリへの単なる定数の追加は収録しない。...
...<ruby 1.8.4 feature/set_trace_func [bug]>))
* ((<ruby 1.8.4 feature/set_trace_func [change]>))
* ((<ruby 1.8.4 feature/printf [bug]>))
* ((<ruby 1.8.4 feature/Hash [bug]>))
* ((<ruby 1.8.4 feature/test [bug]>))
* ((<ruby 1.8.4 feature/File.identical? [new]>))
* ((<ruby 1.8.4 feature/File...
...対応している Tcl/Tk 拡張の種類とバージョンとは
ext/tk/lib/tkextlib/SUPPPORT_STATUS
または
<installed lib dir>/tkextlib/SUPPORT_STATUS
を参照してください.

ただし,Tcl/Tk 拡張のバージョンの記述は,対応...
<< 1 2 > >>