るりまサーチ

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

別のキーワード

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

ライブラリ

モジュール

検索結果

FileUtils.commands -> Array (18125.0)

何らかのオプションを持つメソッド名の配列を返します。

...何らかのオプションを持つメソッド名の配列を返します。

//emlist[][ruby]{
require
'fileutils'
FileUtils.commands # => ["chmod", "cp", "cp_r", "install", ...]
//}...

rubygems/commands/lock_command (18024.0)

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

...た設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMNAME ロックする Gem パッケージの名前...
...the requirements list to ensure that the gems loaded will always
be consistent. A full recursive search of all effected gems will be
generated.

Example:

gemlock rails-1.0.0 > lockdown.rb

will produce in lockdown.rb:

require
"rubyge...
...o ensure that the current
versions are loaded. Make sure that lockdown.rb is loaded *before* any
other require statements.

Notice that rails 1.0.0 only requires that rake 0.6.2 or better be used.
Rake-0.7.0.1 is the most recent version installed that satisfies that, s...

rubygems (12102.0)

RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。

...RubyGems を扱うためのクラスやモジュールが定義されているライブラリです。


===[a:gem_command] gem コマンドの使い方

$ gem help

Ruby
Gems は Ruby のための高機能なパッケージ管理ツールです。
これはより多くの情報へのポ...
...gem install rake
gem list --local
gem build package.gemspec
gem help install

さらにヘルプ:
gem help commands 全ての 'gem' コマンドをリストアップします
gem help examples いくつかの使用方法の例を...
...(e.g. 'gem help install')
より詳しい情報:
https://rubygems.org

==== Gem パッケージをインストールする

例えば rak ( https://rubygems.org/gems/rak ) をインストールするには、以下のいずれかを実行します。...

rubygems/command_manager (12024.0)

gem コマンドによってサポートされているサブコマンドを管理するライブラリです。

...リです。

Extra commands can be provided by writing a rubygems_plugin.rb
file in an installed gem. You should register your command against the
Gem::CommandManager instance, like this:

# file rubygems_plugin.rb
require
'rubygems/command_manager'

class Gem::Commands::EditCommand < Gem::C...
...ommand
# ...
end

Gem::CommandManager.instance.register_command :edit

See Gem::Command for instructions on writing gem commands....