502件ヒット
[1-100件を表示]
(0.137秒)
ライブラリ
- ビルトイン (142)
-
cgi
/ html (24) - getoptlong (24)
-
net
/ http (24) -
net
/ imap (24) -
net
/ pop (36) -
net
/ smtp (32) -
net
/ telnet (4) - openssl (12)
- optparse (96)
-
rdoc
/ context (12) -
rdoc
/ markup (12) -
rubygems
/ dependency _ list (12) -
rubygems
/ validator (12) - shell (12)
- stringio (12)
- uri (12)
クラス
- Array (14)
-
Encoding
:: Converter (48) - Exception (8)
-
Gem
:: DependencyList (12) -
Gem
:: Validator (12) - GetoptLong (24)
- Integer (36)
- Module (12)
-
Net
:: IMAP (24) -
Net
:: POP3 (36) -
Net
:: SMTP (32) -
Net
:: Telnet (4) -
OpenSSL
:: PKey :: EC :: Group (12) - OptionParser (72)
-
RDoc
:: Context (12) -
RDoc
:: Markup (12) - Shell (12)
- String (24)
- StringIO (12)
-
URI
:: Generic (12)
モジュール
-
CGI
:: HtmlExtension (24) -
Net
:: HTTPHeader (24) -
OptionParser
:: Arguable (24)
キーワード
-
add
_ word _ pair (12) - alien (12)
-
auth
_ only (12) - authenticate (12)
-
basic
_ auth (12) - chr (36)
-
dependency
_ order (12) - login (16)
- order (48)
- order! (48)
- ordering (12)
- ordering= (12)
- password (12)
-
password
_ field (24) -
primitive
_ convert (48) -
proxy
_ basic _ auth (12) -
record
_ location (12) -
record
_ separator (6) -
record
_ separator= (6) -
ruby2
_ keywords (12) -
set
_ generator (12) - start (56)
-
to
_ h (14) - ungetc (12)
検索結果
先頭5件
-
Integer
# ord -> Integer (21226.0) -
自身を返します。
...自身を返します。
//emlist[][ruby]{
10.ord #=> 10
# String#ord
?a.ord #=> 97
//}
@see String#ord... -
String
# ord -> Integer (21208.0) -
文字列の最初の文字の文字コードを整数で返します。
...の文字コードを整数で返します。
self が空文字列のときは例外を発生します。
@return 文字コードを表す整数
@raise ArgumentError self の長さが 0 のとき発生
//emlist[例][ruby]{
p "a".ord # => 97
//}
@see Integer#chr, String#chr... -
RDoc
:: Context # record _ location(toplevel) (12201.0) -
Record the file that we happen to find it in
...Record the file that we happen to find it in... -
Shell
# record _ separator -> String (12201.0) -
@todo
...@todo... -
Shell
# record _ separator=(rs) (12201.0) -
@todo
...@todo... -
CGI
:: HtmlExtension # password _ field(attributes) -> String (9201.0) -
タイプが password である input 要素を生成します。
...タイプが password である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
password_field({ "NAME" => "name", "VALUE" => "value" })
# <INPUT TYPE="password" NAME="name" VALUE="value">... -
CGI
:: HtmlExtension # password _ field(name = "" , value = nil , size = 40 , maxlength = nil) -> String (9201.0) -
タイプが password である input 要素を生成します。
...が password である input 要素を生成します。
@param name name 属性の値を指定します。
@param value 属性の値を指定します。
@param size size 属性の値を指定します。
@param maxlength maxlength 属性の値を指定します。
例:
password_field("name"......)
# <INPUT TYPE="password" NAME="name" SIZE="40">
password_field("name", "value")
# <INPUT TYPE="password" NAME="name" VALUE="value" SIZE="40">
password_field("password", "value", 80, 200)
# <INPUT TYPE="password" NAME="name" VALUE="value" SIZE="80" MAXLENGTH="200">... -
Gem
:: DependencyList # dependency _ order -> [Gem :: Specification] (9201.0) -
依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。
...ation のリストを返します。
このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存関係による多くの問題を回避することができます。
If th......ere are circular dependencies (yuck!), then gems will be
returned in order until only the circular dependents and anything
they reference are left. Then arbitrary gemspecs will be returned
until the circular dependency is broken, after which gems will be
returned in dependency order again.... -
GetoptLong
# ordering -> Integer (9201.0) -
現在の順序形式を返します。
現在の順序形式を返します。 -
GetoptLong
# ordering=(ordering) (9201.0) -
順序形式を設定します。
...ORRECT が定義されていると、引数に
GetoptLong::PERMUTE を与えてこのメソッドを呼び出しても、実際のところの順
序形式は GetoptLong::REQUIRE_ORDER に設定されます。
環境変数 POSIXLY_CORRECT が定義されていない限り、GetoptLong::PERMUTE
が......GetoptLong::REQUIRE_ORDER が初期値になり
ます。
@param ordering GetoptLong::REQUIRE_ORDER, GetoptLong::PERMUTE,
GetoptLong::RETURN_IN_ORDER のいずれかを指定します。
@raise ArgumentError GetoptLong::REQUIRE_ORDER, GetoptLong::PERMUTE,
GetoptLon......g::RETURN_IN_ORDER 以外の値を指定した場合に発生します。
@raise RuntimeError GetoptLong#get, GetoptLong#get_option,
GetoptLong#each, GetoptLong#each_option メソッドを
呼び出した後にこのメソッドを呼び出した場合に発...