るりまサーチ

最速Rubyリファレンスマニュアル検索!
424件ヒット [1-100件を表示] (0.187秒)

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. rsa n=
  3. rsa n
  4. openssl n
  5. openssl n=

検索結果

<< 1 2 3 ... > >>

Integer#ord -> Integer (21232.0)

自身を返します。

...自身を返します。

//emlist[][ruby]{
10.ord #=> 10
# String#ord
?a.ord #=> 97
//}

@see String#ord...

String#ord -> Integer (21214.0)

文字列の最初の文字の文字コードを整数で返します。

...の文字コードを整数で返します。

self が空文字列のときは例外を発生します。

@return 文字コードを表す整数
@raise ArgumentError self の長さが 0 のとき発生

//emlist[例][ruby]{
p "a".ord # => 97
//}

@see Integer#chr, String#chr...

RDoc::Context#record_location(toplevel) (18301.0)

Record the file that we happen to find it in

...Record the file that we happen to find it in...

Gem::Validator#alien -> [Gem::Validator.ErrorData] (15401.0)

Gem ディレクトリ内に存在するかもしれない以下のような問題を検証します。

Gem ディレクトリ内に存在するかもしれない以下のような問題を検証します。

* Gem パッケージのチェックサムが正しいこと
* それぞれの Gem に含まれるそれぞれのファイルがインストールされたバージョンであることの一貫性
* Gem ディレクトリに関係の無いファイルが存在しないこと
* キャッシュ、スペック、ディレクトリがそれぞれ一つずつ存在すること

このメソッドは検証に失敗しても例外を発生させません。

CGI::HtmlExtension#password_field(attributes) -> String (15301.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 (15301.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] (15301.0)

依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

...依存する Gem の数が少ない順にソートされた Gem::Specification のリストを返します。

このことは、インストール済みの Gem を削除するときに便利です。
このメソッドで返された順にインストール済みの Gem 削除すると、
依存...
...If there 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....

URI::Generic#password -> String | nil (15301.0)

自身の password を文字列で返します。設定されていない場合は nil を返します。

...自身の password を文字列で返します。設定されていない場合は nil を返します。...

OptionParser::Arguable#order! -> [String] (15207.0)

自身を破壊的にパースし、パースされずに残った引数を文字列の配列として返します。 OptionParser#order! を参照して下さい。

...を文字列の配列として返します。
OptionParser#order! を参照して下さい。

@raise OptionParser::ParseError 自身のパースに失敗した場合、発生します。
実際は OptionParser::ParseError のサブク...
...ラスの例外になります。

//emlist[][ruby]{
require 'optparse'

o = nil
A
RGV.options.on('-a'){ o = true }
A
RGV.order!
p o #=> true
//}...

OptionParser::Arguable#order! {|s| ... } -> [String] (15207.0)

自身を破壊的にパースし、パースされずに残った引数を文字列の配列として返します。 OptionParser#order! を参照して下さい。

...を文字列の配列として返します。
OptionParser#order! を参照して下さい。

@raise OptionParser::ParseError 自身のパースに失敗した場合、発生します。
実際は OptionParser::ParseError のサブク...
...ラスの例外になります。

//emlist[][ruby]{
require 'optparse'

o = nil
A
RGV.options.on('-a'){ o = true }
A
RGV.order!
p o #=> true
//}...

絞り込み条件を変える

<< 1 2 3 ... > >>