206件ヒット
[1-100件を表示]
(0.046秒)
別のキーワード
種類
- ライブラリ (96)
- 文書 (46)
- インスタンスメソッド (31)
- モジュール関数 (21)
- クラス (12)
クラス
- Proc (7)
-
Rake
:: FileList (12) - String (12)
モジュール
- Timeout (21)
キーワード
- << (7)
- ConditionVariable (12)
-
NEWS for Ruby 2
. 1 . 0 (12) -
NEWS for Ruby 2
. 3 . 0 (10) - egrep (12)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 5 feature (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / specification _ command (12) - timeout (21)
検索結果
先頭5件
-
rubygems
/ commands / install _ command (26048.0) -
Gem パッケージをローカルリポジトリにインストールするためのライブラリです。
...ッケージをインストールします
--[no-]format-executable Make installed executable names match ruby.
If ruby is ruby18, foo_exec will be
foo_exec18
Local/Remote Options:
-l, --local......限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL G......静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし... -
rubygems
/ commands / dependency _ command (26024.0) -
インストールされている Gem パッケージの依存関係を表示するためのライブラリです。
...限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL G......静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし... -
rubygems
/ commands / fetch _ command (26024.0) -
Gem パッケージをダウンロードしてカレントディレクトリに保存するためのライブラリです。
...--platform PLATFORM 指定されたプラットフォームの Gem を取得します
Local/Remote Options:
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
-p, --[no-]http-proxy [URL]......静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし... -
rubygems
/ commands / list _ command (26024.0) -
Gem パッケージの名前を前方一致で検索するためのライブラリです。
...限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL G......静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし... -
rubygems
/ commands / outdated _ command (26024.0) -
更新が必要な Gem パッケージの一覧を出力するためのライブラリです。
...限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL G......静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし... -
rubygems
/ commands / query _ command (26024.0) -
Gem パッケージの情報を検索するためのライブラリです。
...限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL G......静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし... -
rubygems
/ commands / search _ command (26024.0) -
指定された文字列を含む Gem パッケージを全て表示するためのライブラリです。
...限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL G......静かに実行します
--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にし... -
rubygems
/ commands / specification _ command (26024.0) -
指定された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。
...された Gem パッケージの gemspec の情報を YAML 形式で表示するためのライブラリです。
Usage: gem specification [GEMFILE] [options]
Options:
-v, --version VERSION Specify version of gem to examine
--platform PLATFORM Specify the p......限定します
-b, --both ローカルとリモートの両方の操作を許可します
-B, --bulk-threshold COUNT Threshold for switching to bulk
synchronization (default 1000)
--source URL G......--config-file FILE 指定された設定ファイルを使用します
--backtrace バックトレースを表示します
--debug Ruby 自体のデバッグオプションを有効にします
Arguments:
GEMFILE ge... -
String
# count(*chars) -> Integer (18149.0) -
chars で指定された文字が文字列 self にいくつあるか数えます。
...数える文字のパターン
//emlist[例][ruby]{
p 'abcdefg'.count('c') # => 1
p '123456789'.count('2378') # => 4
p '123456789'.count('2-8', '^4-6') # => 4
# ファイルの行数を数える
n_lines = File.read("foo").count("\n")
# ファイルの末尾に改行コー......ドがない場合にも対処する
buf = File.read("foo")
n_lines = buf.count("\n")
n_lines += 1 if /[^\n]\z/ =~ buf
# if /\n\z/ !~ buf だと空ファイルを 1 行として数えてしまうのでダメ
//}...