258件ヒット
[1-100件を表示]
(0.015秒)
種類
- インスタンスメソッド (126)
- 関数 (48)
- 特異メソッド (48)
- 定数 (36)
ライブラリ
-
cgi
/ util (12) - csv (84)
- fileutils (12)
- shell (30)
-
shell
/ command-processor (30) -
shell
/ filter (30) -
webrick
/ httpservlet / filehandler (12)
クラス
- CGI (12)
- CSV (48)
-
CSV
:: Table (36) - Shell (30)
-
Shell
:: CommandProcessor (30) -
Shell
:: Filter (30) -
WEBrick
:: HTTPServlet :: FileHandler (12)
モジュール
- FileUtils (12)
キーワード
- HandlerTable (12)
-
OPT
_ TABLE (12) -
TABLE
_ FOR _ ESCAPE _ HTML _ _ (12) - executable? (18)
-
executable
_ real? (18) - new (12)
- push (12)
-
rb
_ mark _ hash (12) - read (12)
- readlines (12)
- rehash (12)
-
st
_ init _ table (12) -
st
_ init _ table _ with _ size (12) -
to
_ csv (12) -
to
_ s (12) -
world
_ writable? (18) - writable? (18)
-
writable
_ real? (18)
検索結果
先頭5件
-
CSV
. table(path , options = Hash . new) -> CSV :: Table | [Array] (18302.0) -
以下と同等のことを行うメソッドです。
以下と同等のことを行うメソッドです。
//emlist[][ruby]{
CSV.read( path, { headers: true,
converters: :numeric,
header_converters: :symbol }.merge(options) )
//}
@param path ファイル名を指定します。
@param options CSV.new のオプションと同じオプションを指定できます。
@see CSV.read -
CSV
:: Table # push(*rows) -> self (9130.0) -
複数の行を追加するためのショートカットです。
...ire 'csv'
csv = CSV.new("a,b,c\n1,2,3", headers: true)
table = csv.read
rows = [
CSV::Row.new(table.headers, [4, 5, 6]),
[7, 8, 9]
]
table.push(*rows)
p table[0..2]
# => [#<CSV::Row "a":"1" "b":"2" "c":"3">, #<CSV::Row "a":4 "b":5 "c":6>, #<CSV::Row "a":7 "b":8 "c":9>]
//}
@see CSV::Table#<<... -
Shell
# executable?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable?... -
Shell
# executable _ real?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
# world _ writable? (9100.0) -
@todo
@todo -
Shell
# writable?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable?... -
Shell
# writable _ real?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
Shell
:: CommandProcessor # executable?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable?... -
Shell
:: CommandProcessor # executable _ real?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
:: CommandProcessor # world _ writable? (9100.0) -
@todo
@todo -
Shell
:: CommandProcessor # writable?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable?... -
Shell
:: CommandProcessor # writable _ real?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#writable_real?... -
Shell
:: Filter # executable?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable?... -
Shell
:: Filter # executable _ real?(file) -> bool (9100.0) -
FileTest モジュールにある同名のクラスメソッドと同じです.
...FileTest モジュールにある同名のクラスメソッドと同じです.
@param file ファイル名を表す文字列を指定します。
@see FileTest.#executable_real?... -
Shell
:: Filter # world _ writable? (9100.0) -
@todo
@todo