1225件ヒット
[101-200件を表示]
(0.056秒)
ライブラリ
- ビルトイン (252)
-
cgi
/ util (12) - csv (456)
- fileutils (12)
-
io
/ wait (24) - json (12)
- mkmf (12)
-
net
/ ftp (40) - openssl (60)
- pathname (60)
-
rexml
/ document (24) - ripper (24)
-
rubygems
/ specification (48) - shell (24)
-
shell
/ command-processor (24) -
shell
/ filter (24) - un (12)
-
webrick
/ httpserver (48) -
webrick
/ httpservlet / filehandler (12) - zlib (12)
クラス
- CGI (12)
- CSV (72)
-
CSV
:: Row (36) -
CSV
:: Table (348) - Class (12)
- Encoding (24)
- File (60)
-
File
:: Stat (60) -
Gem
:: Specification (48) - IO (36)
-
Net
:: FTP :: MLSxEntry (40) -
OpenSSL
:: ASN1 :: PrintableString (24) - Pathname (60)
-
REXML
:: DocType (12) -
REXML
:: Element (12) - Ripper (24)
-
RubyVM
:: InstructionSequence (36) - Shell (24)
-
Shell
:: CommandProcessor (24) -
Shell
:: Filter (24) -
WEBrick
:: HTTPServer :: MountTable (48) -
WEBrick
:: HTTPServlet :: FileHandler (12)
モジュール
- FileTest (60)
- FileUtils (12)
- Kernel (24)
-
OpenSSL
:: ASN1 (36) - Zlib (12)
キーワード
- << (12)
- == (12)
-
BIG5
_ UAO (12) -
Big5
_ UAO (12) -
DEFAULT
_ ENTITIES (12) - HandlerTable (12)
-
NEWS for Ruby 2
. 4 . 0 (9) -
OPT
_ TABLE (12) -
PARSER
_ EVENT _ TABLE (12) - PRINTABLESTRING (12)
- PrintableString (24)
-
SCANNER
_ EVENT _ TABLE (12) -
TABLE
_ FOR _ ESCAPE _ HTML _ _ (12) - [] (48)
-
add
_ bindir (12) -
by
_ col (12) -
by
_ col! (12) -
by
_ col _ or _ row (12) -
by
_ col _ or _ row! (12) -
by
_ row (12) -
by
_ row! (12) -
crc
_ table (12) - creatable? (10)
-
default
_ executable (12) - deletable? (10)
- delete (24)
-
delete
_ if (24) - disasm (12)
- disassemble (12)
- each (24)
- empty? (12)
- executable (12)
- executable? (66)
-
executable
_ real? (66) - executables (12)
- fields (12)
-
find
_ executable (12) - headers (12)
- inspect (12)
-
json
_ creatable? (12) - length (12)
- listable? (10)
- mode (12)
- new (84)
- push (12)
-
rdoc
/ markdown (12) - read (24)
- readlines (24)
-
ruby 1
. 8 . 4 feature (12) - scan (12)
- size (12)
-
to
_ a (24) -
to
_ csv (12) -
to
_ s (12) -
values
_ at (24) -
wait
_ writable (36) -
world
_ writable? (48) - writable? (76)
-
writable
_ real? (66) -
write
_ nonblock (12)
検索結果
先頭5件
-
Zlib
. # crc _ table -> Array (6201.0) -
CRC チェックサムの計算に用いるテーブルを配列で返します。
CRC チェックサムの計算に用いるテーブルを配列で返します。 -
Class
# json _ creatable? -> bool (6200.0) -
シリアライズされた JSON 形式の文字列から、インスタンスを作成するのにこのクラスを使用できる場合は 真を返します。そうでない場合は、偽を返します。
...json_create というメソッドを実装していなければなりません。
また json_create の第一引数は必要なデータを含むハッシュを期待しています。
//emlist[例][ruby]{
require "json"
String.json_creatable? # => true
Dir.json_creatable? # => false
//}... -
File
. executable?(path) -> bool (6200.0) -
FileTest.#executable? と同じです。
...FileTest.#executable? と同じです。
@param path パスを表す文字列を指定します。... -
File
. executable _ real?(path) -> bool (6200.0) -
FileTest.#executable_real? と同じです。
...FileTest.#executable_real? と同じです。
@param path パスを表す文字列を指定します。... -
File
. world _ writable?(path) -> bool (6200.0) -
path が全てのユーザから書き込めるならば、そのファイルのパーミッションを表す 整数を返します。そうでない場合は nil を返します。
...ない場合は nil を返します。
整数の意味はプラットフォームに依存します。
@param path パスを表す文字列か IO オブジェクトを指定します。
//emlist[例][ruby]{
m = File.world_writable?("/tmp")
"%o" % m #=> "777"
//}......でない場合は nil を返します。
整数の意味はプラットフォームに依存します。
@param path パスを表す文字列か IO オブジェクトを指定します。
//emlist[例][ruby]{
m = File.world_writable?("/tmp")
"%o" % m #=> "777"
//}... -
File
. writable?(path) -> bool (6200.0) -
FileTest.#writable? と同じです。
...FileTest.#writable? と同じです。
@param path パスを表す文字列を指定します。... -
File
. writable _ real?(path) -> bool (6200.0) -
FileTest.#writable_real? と同じです。
...FileTest.#writable_real? と同じです。
@param path パスを表す文字列を指定します。... -
File
:: Stat # executable? -> bool (6200.0) -
実効ユーザ/グループIDで実行できる時に真を返します。
...実効ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable?
# 例
#=> true
//}... -
File
:: Stat # executable _ real? -> bool (6200.0) -
実ユーザ/グループIDで実行できる時に真を返します。
...実ユーザ/グループIDで実行できる時に真を返します。
//emlist[][ruby]{
p File::Stat.new($0).executable_real?
#例
#=> true
//}...