るりまサーチ

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

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dsa p
  5. rsa p

検索結果

<< 1 2 3 ... > >>

String#ord -> Integer (18114.0)

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

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

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

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

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

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

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....

CGI::HtmlExtension#password_field(attributes) -> String (12201.0)

タイプが password である input 要素を生成します。

...タイプが password である input 要素を生成します。

@param attributes 属性をハッシュで指定します。

例:
p
assword_field({ "NAME" => "name", "VALUE" => "value" })
# <INPUT TYPE="password" NAME="name" VALUE="value">...

CGI::HtmlExtension#password_field(name = "", value = nil, size = 40, maxlength = nil) -> String (12201.0)

タイプが password である input 要素を生成します。

...プが password である input 要素を生成します。

@param name name 属性の値を指定します。

@param value 属性の値を指定します。

@param size size 属性の値を指定します。

@param maxlength maxlength 属性の値を指定します。

例:
p
assword_field("na...
...me")
# <INPUT TYPE="password" NAME="name" SIZE="40">

p
assword_field("name", "value")
# <INPUT TYPE="password" NAME="name" VALUE="value" SIZE="40">

p
assword_field("password", "value", 80, 200)
# <INPUT TYPE="password" NAME="name" VALUE="value" SIZE="80" MAXLENGTH="200">...

RDoc::Markup#add_word_pair(start, stop, name) -> () (12201.0)

start と stop ではさまれる文字列(例. *bold*)をフォーマットの対象にしま す。

...art と stop ではさまれる文字列(例. *bold*)をフォーマットの対象にしま
す。

@param start 開始となる文字列を指定します。

@param stop 終了となる文字列を指定します。start と同じ文字列にする事も
可能です。

@param name S...
...します。

例:

require 'rdoc/markup/simple_markup'
require 'rdoc/markup/simple_markup/to_html'
m = SM::SimpleMarkup.new
m.add_word_pair("{", "}", :STRIKE)

h = SM::ToHtml.new
h.add_tag(:STRIKE, "<strike>", "</strike>")
p
uts m.convert(input_string, h)

変換時に実際にフォ...

絞り込み条件を変える

Shell#record_separator -> String (12201.0)

@todo

@todo

Shell#record_separator=(rs) (12201.0)

@todo

@todo

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

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

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

URI::Generic#password=(s) (12201.0)

自身の password を設定します。

...自身の password を設定します。

自身に user が設定されていない場合には例外が発生します。

@param s 自身の password を表す文字列を指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

@raise URI::InvalidUR...

GetoptLong#ordering=(ordering) (9201.0)

順序形式を設定します。

... POSIXLY_CORRECT が定義されていると、引数に
GetoptLong::PERMUTE を与えてこのメソッドを呼び出しても、実際のところの順
序形式は GetoptLong::REQUIRE_ORDER に設定されます。

環境変数 POSIXLY_CORRECT が定義されていない限り、GetoptLong::P...
...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 メソッドを
呼び出した後にこのメソッドを呼び出した場合に発...

絞り込み条件を変える

<< 1 2 3 ... > >>