687件ヒット
[101-200件を表示]
(0.032秒)
ライブラリ
- ビルトイン (120)
-
cgi
/ core (36) -
cgi
/ html (24) -
irb
/ cmd / load (36) -
irb
/ context (12) -
irb
/ ext / save-history (24) -
irb
/ extend-command (24) - mkmf (12)
-
net
/ ftp (48) - nkf (12)
- openssl (108)
- pathname (12)
- rake (24)
-
rdoc
/ context (36) -
rubygems
/ indexer (12) -
rubygems
/ installer (12) -
rubygems
/ specification (24) - win32ole (12)
クラス
-
ARGF
. class (12) - File (24)
-
Gem
:: Indexer (12) -
Gem
:: Installer (12) -
Gem
:: Specification (24) - IO (48)
-
IRB
:: Context (36) -
IRB
:: ExtendCommand :: Load (12) -
IRB
:: ExtendCommand :: Require (12) -
IRB
:: ExtendCommand :: Source (12) -
Net
:: FTP (48) -
OpenSSL
:: SSL :: SSLContext (60) -
OpenSSL
:: X509 :: ExtensionFactory (12) - Pathname (12)
-
RDoc
:: Context (36) -
Rake
:: FileList (12) - String (12)
- WIN32OLE (12)
モジュール
-
CGI
:: HtmlExtension (24) -
CGI
:: QueryExtension (36) -
File
:: Constants (12) -
IRB
:: ContextExtender (12) -
IRB
:: ExtendCommandBundle (12) - Kernel (36)
キーワード
- Config (12)
-
DEFAULT
_ CERT _ STORE (12) - ExtensionFactory (12)
-
FNM
_ EXTGLOB (12) -
NEWS for Ruby 2
. 2 . 0 (11) -
NEWS for Ruby 2
. 3 . 0 (10) -
NEWS for Ruby 2
. 5 . 0 (8) -
NEWS for Ruby 2
. 7 . 0 (6) -
NEWS for Ruby 3
. 1 . 0 (4) - NKF (12)
- Request (12)
-
ca
_ file (12) -
ca
_ file= (12) -
cert
_ store= (12) - compress (12)
- config= (12)
-
create
_ body (12) -
create
_ makefile (12) -
def
_ extend _ command (24) -
defined
_ in? (12) - dirname (12)
-
drb
/ extservm (12) - execute (36)
-
external
_ encoding (12) - extname (24)
-
extra
_ rdoc _ files (12) -
extra
_ rdoc _ files= (12) -
extract
_ files (12) -
file
_ field (24) -
file
_ input? (12) - files (12)
- gettextfile (24)
-
history
_ file (12) -
history
_ file= (12) -
in
_ files (12) -
inplace
_ mode= (12) -
ole
_ show _ help (12) - open (24)
- pathmap (12)
- puttextfile (24)
-
record
_ location (12) -
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 2 feature (12) -
ruby 1
. 8 . 3 feature (12) -
ruby 1
. 8 . 4 feature (12) -
set
_ encoding (36) -
set
_ params (12) -
unescape
_ filename? (12)
検索結果
先頭5件
-
Gem
:: Specification # extra _ rdoc _ files -> [String] (12200.0) -
RDoc でドキュメントを作成する際に使用する特別なファイルのリストを返します。
RDoc でドキュメントを作成する際に使用する特別なファイルのリストを返します。 -
Gem
:: Specification # extra _ rdoc _ files=(paths) (12200.0) -
RDoc でドキュメントを作成する際に使用する特別なファイルのリストをセットします。
RDoc でドキュメントを作成する際に使用する特別なファイルのリストをセットします。
@param paths RDoc でドキュメントを作成する際に使用する特別なファイルのリストを指定します。 -
IRB
:: ExtendCommandBundle . def _ extend _ command(cmd _ name , cmd _ class , load _ file = nil , *aliases) -> object (9207.0) -
irb に cmd_name で指定したメソッドが実行できるように拡張します。
...String、Class のいずれかで指定します。
なお、このクラスは IRB::ExtendCommand 以下で定義
する必要があります。
@param load_file 指定したメソッドが定義されたファイル名を指
定します。こ......す。複数指定する事ができます。フラグは
IRB::ExtendCommandBundle::NO_OVERRIDE、
IRB::ExtendCommandBundle::OVERRIDE_PRIVATE_ONLY、
IRB::ExtendCommandBundle::OVERRIDE_ALL のいずれか
を指定します。... -
File
. dirname(filename , level=1) -> String (9178.0) -
filename の一番後ろのスラッシュより前を文 字列として返します。スラッシュを含まないファイル名に対しては "."(カレントディレクトリ)を返します。
...
filename の一番後ろのスラッシュより前を文
字列として返します。スラッシュを含まないファイル名に対しては
"."(カレントディレクトリ)を返します。
//emlist[例][ruby]{
p File.dirname("dir/file.ext") # => "dir"
p File.dirname("file.ext")......# => "."
//}
File.dirname の動作は dirname(3)
に従います。
//emlist[例][ruby]{
p File.dirname("foo/bar/") # => "foo"
p File.dirname("foo//bar") # => "foo"
//}
level が指定されたときは、最後のlevel個を取り除いた文字列を返します。
//emlist[leve......lを指定する例][ruby]{
File.dirname("/home/gumby/work/ruby.rb", 2) # => "/home/gumby"
File.dirname("/home/gumby/work/ruby.rb", 4) # => "/"
//}
@param filename ファイル名を表す文字列を指定します。
@param level 末尾からいくつ取り除くかを指定します。
@raise A... -
File
. dirname(filename) -> String (9166.0) -
filename の一番後ろのスラッシュより前を文 字列として返します。スラッシュを含まないファイル名に対しては "."(カレントディレクトリ)を返します。
...
filename の一番後ろのスラッシュより前を文
字列として返します。スラッシュを含まないファイル名に対しては
"."(カレントディレクトリ)を返します。
//emlist[例][ruby]{
p File.dirname("dir/file.ext") # => "dir"
p File.dirname("file.ext")......# => "."
//}
File.dirname の動作は dirname(3)
に従います。
//emlist[例][ruby]{
p File.dirname("foo/bar/") # => "foo"
p File.dirname("foo//bar") # => "foo"
//}
@param filename ファイル名を表す文字列を指定します。
@see File.basename, File.extname... -
CGI
:: HtmlExtension # file _ field(name = "" , size = 20 , maxlength = nil) -> String (9157.0) -
タイプが file である input 要素を生成します。
...タイプが file である input 要素を生成します。
@param name name 属性の値を指定します。
@param size size 属性の値を指定します。
@param maxlength maxlength 属性の値を指定します。
例:
file_field("name")
# <INPUT TYPE="file" NAME="name" SIZE=......"20">
file_field("name", 40)
# <INPUT TYPE="file" NAME="name" SIZE="40">
file_field("name", 40, 100)
# <INPUT TYPE="file" NAME="name" SIZE="40" MAXLENGTH="100">... -
CGI
:: HtmlExtension # file _ field(attributes) -> String (9137.0) -
タイプが file である input 要素を生成します。
...タイプが file である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
file_field({ "NAME" => "name", "SIZE" => 40 })
# <INPUT TYPE="file" NAME="name" SIZE="40">... -
File
:: Constants :: FNM _ EXTGLOB -> Integer (9116.0) -
{} 内のコンマで区切られた文字列の組合せにマッチするようになります。 File.fnmatch で使用します。
...{} 内のコンマで区切られた文字列の組合せにマッチするようになります。
File.fnmatch で使用します。... -
IRB
:: Context # history _ file=(hist) (9107.0) -
履歴ファイルのパスを val に設定します。
...履歴ファイルのパスを val に設定します。
.irbrc ファイル中で IRB.conf[:HISTORY_FILE] を設定する事でも同様の事が
行えます。
@param hist 履歴ファイルのパスを文字列で指定します。
@see lib:irb#history... -
OpenSSL
:: SSL :: SSLContext # ca _ file -> String | nil (9107.0) -
接続相手の検証のために使う、信頼している CA 証明書ファイルのパスを返します。
...接続相手の検証のために使う、信頼している CA 証明書ファイルのパスを返します。
設定されていない場合は nil を返します。
@see OpenSSL::SSL::SSLContext#ca_file=...