るりまサーチ

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

別のキーワード

  1. _builtin to_r
  2. open3 pipeline_r
  3. matrix elements_to_r
  4. fileutils cp_r
  5. fileutils chmod_r

ライブラリ

モジュール

検索結果

<< < ... 2 3 4 >>

RDoc::CodeObject#comment -> String (12302.0)

自身のコメントを返します。

自身のコメントを返します。

Refinement#import_methods(*modules) -> self (12225.0)

モジュールからメソッドをインポートします。

...ポートします。

Module#includeと違って、import_methods はメソッドをコピーして
r
efinement に追加して、refinementでインポートしたメソッドを有効化します。

メソッドをコピーするため、Rubyコードで定義されたメソッドだけしか
...
...t[][ruby]{
module StrUtils
def indent(level)
' ' * level + self
end
end

module M
r
efine String do
import_methods StrUtils
end
end

using M
p "foo".indent(3) # => " foo"

module M
r
efine String do
import_methods Enumerable
# Can't import method which is not defined with R...
...uby code: Enumerable#drop
end
end
//}...

CGI::HtmlExtension#form(method = "post", action = nil, enctype = "application/x-www-form-urlencoded") -> String (9543.0)

form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

...form 要素を生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。

@param method method 属性の値として "get" か "post" を指定します。

@param action action 属性の値を指定します。デフォルトは現在の CGI ス...
...param enctype enctype 属性の値を指定します。デフォルトは "application/x-www-form-urlencoded" です。

例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="applicatio...
...n/x-www-form-urlencoded">string</FORM>

form("get", "url"){ "string" }
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>...

CGI::HtmlExtension#form(method = "post", action = nil, enctype = "application/x-www-form-urlencoded") { ... } -> String (9543.0)

form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

...form 要素を生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。

@param method method 属性の値として "get" か "post" を指定します。

@param action action 属性の値を指定します。デフォルトは現在の CGI ス...
...param enctype enctype 属性の値を指定します。デフォルトは "application/x-www-form-urlencoded" です。

例:
form{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="applicatio...
...n/x-www-form-urlencoded">string</FORM>

form("get", "url"){ "string" }
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>...

Net::IMAP::ResponseCode#name -> String (9302.0)

レスポンスコードを表す文字列を返します。 "ALERT"、"PERMANENTFLAGS"、"UIDVALIDITY" などを返します。

...レスポンスコードを表す文字列を返します。

"ALERT"、"PERMANENTFLAGS"、"UIDVALIDITY" などを返します。...

絞り込み条件を変える

<< < ... 2 3 4 >>