103件ヒット
[101-103件を表示]
(0.123秒)
ライブラリ
- ビルトイン (56)
-
cgi
/ core (3) -
cgi
/ html (8) -
irb
/ cmd / help (1) -
irb
/ input-method (6) - json (12)
-
net
/ http (2) - rake (1)
-
webrick
/ httprequest (1) -
webrick
/ httpresponse (1) - win32ole (12)
クラス
- CGI (2)
- Exception (1)
-
IRB
:: ExtendCommand :: Help (1) -
IRB
:: FileInputMethod (1) -
IRB
:: InputMethod (1) -
IRB
:: ReadlineInputMethod (2) -
IRB
:: StdioInputMethod (2) -
JSON
:: State (1) - Method (3)
- Module (28)
- NameError (1)
-
Net
:: HTTPGenericRequest (1) - Object (5)
- Proc (1)
- Refinement (1)
-
RubyVM
:: InstructionSequence (4) - String (5)
- UnboundMethod (8)
-
WEBrick
:: HTTPRequest (1) -
WEBrick
:: HTTPResponse (1) -
WIN32OLE
_ METHOD (8) -
WIN32OLE
_ PARAM (4)
モジュール
-
CGI
:: HtmlExtension (8) -
CGI
:: QueryExtension (1) -
JSON
:: Generator :: GeneratorMethods :: Array (1) -
JSON
:: Generator :: GeneratorMethods :: FalseClass (1) -
JSON
:: Generator :: GeneratorMethods :: Float (1) -
JSON
:: Generator :: GeneratorMethods :: Hash (1) -
JSON
:: Generator :: GeneratorMethods :: Integer (1) -
JSON
:: Generator :: GeneratorMethods :: NilClass (1) -
JSON
:: Generator :: GeneratorMethods :: Object (1) -
JSON
:: Generator :: GeneratorMethods :: String (3) -
JSON
:: Generator :: GeneratorMethods :: TrueClass (1) -
Net
:: HTTPHeader (1)
キーワード
- == (1)
-
absolute
_ path (1) -
alias
_ method (1) - arity (1)
- backtrace (1)
-
base
_ label (1) - clone (1)
-
define
_ method (2) -
define
_ singleton _ method (2) - encode (3)
- eql? (1)
-
event
_ interface (1) - execute (1)
-
file
_ name (1) - form (4)
- generate (1)
- gets (3)
- header (1)
- helpfile (1)
- helpstring (1)
-
import
_ methods (1) - inspect (2)
-
instance
_ method (1) -
invoke
_ kind (1) - label (1)
- line (2)
-
method
_ defined? (1) -
module
_ function (3) -
multipart
_ form (4) - name (3)
-
ole
_ type (1) -
ole
_ type _ detail (1) - out (1)
- path (1)
- private (4)
-
private
_ class _ method (2) -
private
_ method _ defined? (1) - protected (4)
-
protected
_ method _ defined? (1) - public (1)
-
public
_ class _ method (2) -
public
_ instance _ method (1) -
public
_ method (1) -
public
_ method _ defined? (1) -
rake
_ extension (1) -
remove
_ method (1) -
request
_ method (3) -
return
_ type (1) -
return
_ type _ detail (1) -
singleton
_ method (1) -
source
_ location (3) -
to
_ json (9) -
to
_ json _ raw (1) -
to
_ json _ raw _ object (1) -
to
_ s (6) -
to
_ str (1) -
undef
_ method (1)
検索結果
先頭3件
-
WIN32OLE
_ PARAM # name -> String (664.0) -
パラメータ名を取得します。
パラメータ名を取得します。
@return パラメータ名を返します。名前付き引数形式でメソッドを呼び出すときに指定します。
tobj = WIN32OLE_TYPE.new('Microsoft Excel 9.0 Object Library', 'Workbook')
method = WIN32OLE_METHOD.new(tobj, 'SaveAs')
param1 = method.params[0]
puts param1.name # => Filename -
CGI
# header(options = "text / html") -> String (661.0) -
HTTP ヘッダを options に従って生成します。 CGI#out と違い、標準出力には出力しません。 CGI#out を使わずに自力で HTML を出力したい場合などに使います。 このメソッドは文字列エンコーディングを変換しません。
HTTP ヘッダを options に従って生成します。 CGI#out と違い、標準出力には出力しません。
CGI#out を使わずに自力で HTML を出力したい場合などに使います。
このメソッドは文字列エンコーディングを変換しません。
ヘッダのキーとしては以下が利用可能です。
: type
Content-Type ヘッダです。デフォルトは "text/html" です。
: charset
ボディのキャラクタセットを Content-Type ヘッダに追加します。
: nph
真偽値を指定します。真ならば、HTTP のバージョン、ステータスコード、
Date ヘッ... -
Module
# public(name) -> String | Symbol (661.0) -
メソッドを public に設定します。
メソッドを public に設定します。
引数なしのときは今後このクラスまたはモジュール定義内で新規に定義さ
れるメソッドをどんな形式でも呼び出せるように(public)設定します。
引数が与えられた時には引数によって指定されたメソッドを public に設
定します。
可視性については d:spec/def#limit を参照して下さい。
@param name 0 個以上の String または Symbol を指定します。
@param names 0 個以上の String または Symbol を Array で指定します。
@raise NameError 存在しない...