284件ヒット
[1-100件を表示]
(0.117秒)
ライブラリ
- ビルトイン (108)
- logger (50)
- pathname (24)
-
rubygems
/ package / tar _ header (24) -
rubygems
/ specification (24) - shell (18)
-
shell
/ command-processor (18) -
shell
/ filter (18)
クラス
- BasicObject (12)
-
File
:: Stat (24) -
Gem
:: Package :: TarHeader (24) -
Gem
:: Specification (24) - IO (60)
-
Logger
:: Application (2) -
Logger
:: LogDevice (48) - Pathname (24)
- Shell (18)
-
Shell
:: CommandProcessor (18) -
Shell
:: Filter (18) - String (12)
キーワード
- % (12)
-
_ _ id _ _ (12) -
add
_ development _ dependency (12) - autoclose= (12)
- blockdev? (42)
- chardev? (42)
- close (12)
-
close
_ on _ exec= (12) -
close
_ on _ exec? (12) -
development
_ dependencies (12) - devmajor (12)
- devminor (12)
- filename (12)
- log= (1)
- out (18)
-
set
_ log (1) - sysread (12)
- sysseek (12)
- write (12)
検索結果
先頭5件
-
Logger
:: LogDevice # dev -> IO (24102.0) -
出力先の IO オブジェクトを取得します。
出力先の IO オブジェクトを取得します。 -
Gem
:: Specification # development _ dependencies -> Array (15201.0) -
この Gem が依存している Gem のリストを返します。
この Gem が依存している Gem のリストを返します。 -
Gem
:: Specification # add _ development _ dependency(gem , *requirements) -> [Gem :: Dependency] (12313.0) -
この gem の DEVELOPMENT 依存性を追加します。 この gem の開発時に必要となる gem を指定します。
...この gem の DEVELOPMENT 依存性を追加します。
この gem の開発時に必要となる gem を指定します。
//emlist[][ruby]{
gem "rack", "~> 1.6", ">= 1.6.12"
//}
@param gem 依存する gem の名前か Gem::Dependency のインスタンスを指定します。
@param require......ments バージョンの必要条件を 0 個以上指定します。デフォルトは ">= 0" です。
@see Gem::Specification#add_runtime_dependency, Gem::Dependency... -
File
:: Stat # blockdev? -> bool (12219.0) -
ブロックスペシャルファイルの時に真を返します。
...ブロックスペシャルファイルの時に真を返します。
//emlist[][ruby]{
Dir.glob("/dev/*") {|bd|
if File::Stat.new(bd).blockdev?
puts bd
end
}
#例
#...
#=> /dev/hda1
#=> /dev/hda3
#...
//}... -
File
:: Stat # chardev? -> bool (12219.0) -
キャラクタスペシャルファイルの時に真を返します。
...キャラクタスペシャルファイルの時に真を返します。
//emlist[][ruby]{
Dir.glob("/dev/*") {|bd|
if File::Stat.new(bd).chardev?
puts bd
end
}
#例
#...
#=> /dev/tty1
#=> /dev/stderr
#...
//}... -
Shell
# blockdev?(file) -> bool (12217.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#blockdev?... -
Shell
# chardev?(file) -> bool (12217.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#chardev?... -
Shell
:: CommandProcessor # blockdev?(file) -> bool (12217.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#blockdev?... -
Shell
:: CommandProcessor # chardev?(file) -> bool (12217.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#chardev?... -
Shell
:: Filter # blockdev?(file) -> bool (12217.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#blockdev?... -
Shell
:: Filter # chardev?(file) -> bool (12217.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列か IO オブジェクトを指定します。
@see FileTest.#chardev?... -
Pathname
# blockdev? -> bool (12201.0) -
FileTest.blockdev?(self.to_s) と同じです。
...FileTest.blockdev?(self.to_s) と同じです。
@see FileTest.#blockdev?...