1163件ヒット
[1101-1163件を表示]
(0.021秒)
ライブラリ
- ビルトイン (127)
- bigdecimal (24)
- csv (24)
- fiddle (12)
- forwardable (24)
-
irb
/ cmd / load (12) -
irb
/ ext / use-loader (12) -
net
/ http (156) - optparse (12)
- pathname (12)
- pp (4)
-
rdoc
/ context (24) -
rexml
/ document (12) - rubygems (36)
-
rubygems
/ custom _ require (12) -
rubygems
/ dependency (36) -
rubygems
/ dependency _ installer (24) -
rubygems
/ require _ paths _ builder (12) -
rubygems
/ requirement (132) -
rubygems
/ source _ index (12) -
rubygems
/ specification (192) - thread (24)
- uri (60)
-
webrick
/ httpservlet / abstract (72) -
webrick
/ httputils (96)
クラス
- Array (21)
- BigDecimal (24)
- CSV (24)
-
Fiddle
:: Pointer (12) -
Gem
:: Dependency (36) -
Gem
:: DependencyInstaller (24) -
Gem
:: LoadError (24) -
Gem
:: Requirement (132) -
Gem
:: SourceIndex (12) -
Gem
:: Specification (192) -
IRB
:: ExtendCommand :: Require (12) -
Net
:: HTTPGenericRequest (96) - Object (4)
- OptionParser (12)
- Pathname (12)
-
RDoc
:: Context (24) -
REXML
:: DocType (12) -
RubyVM
:: InstructionSequence (24) - String (12)
-
Thread
:: Queue (56) -
Thread
:: SizedQueue (38) -
URI
:: Generic (48) -
URI
:: HTTP (12) -
WEBrick
:: HTTPServlet :: AbstractServlet (72) -
WEBrick
:: HTTPUtils :: FormData (96)
モジュール
- Forwardable (24)
-
Gem
:: RequirePathsBuilder (12) -
IRB
:: ExtendCommandBundle (12) - Kernel (24)
-
Net
:: HTTPHeader (60)
キーワード
- + (12)
- === (12)
- =~ (12)
- [] (12)
-
add
_ dependency (12) -
add
_ development _ dependency (12) -
add
_ require (12) -
add
_ runtime _ dependency (12) -
as
_ list (12) - autorequire (12)
- autorequire= (12)
- body (12)
- body= (12)
-
body
_ stream (12) -
body
_ stream= (12) - clear (2)
- concat (12)
-
def
_ delegator (12) -
def
_ instance _ delegator (12) - deq (24)
- divmod (12)
-
do
_ DELETE (12) -
do
_ GET (12) -
do
_ HEAD (12) -
do
_ OPTIONS (12) -
do
_ POST (12) -
do
_ PUT (12) - each (12)
-
each
_ data (12) -
each
_ header (12) -
each
_ value (12) - empty? (2)
- environment (12)
- eql? (36)
- exact? (12)
- execute (12)
- filename (12)
- filename= (12)
-
find
_ name (12) -
find
_ spec _ by _ name _ and _ version (12) -
first
_ lineno (12) -
force
_ quotes? (12) -
form
_ data= (12) - gem (12)
- install (12)
-
irb
_ require (12) - length (2)
- list (12)
- max= (2)
- merge (12)
- method (12)
- name (12)
- name= (12)
- none? (12)
-
num
_ waiting (12) - opaque (12)
- pack (21)
- path (12)
- pop (24)
- prerelease? (12)
-
pretty
_ print (16) - query (12)
-
quote
_ char (12) -
request
_ body _ permitted? (12) -
request
_ uri (12) -
require
_ path (12) -
require
_ path= (12) -
require
_ paths (12) -
require
_ paths= (12) -
required
_ ruby _ version (12) -
required
_ ruby _ version= (12) -
required
_ rubygems _ version (12) -
required
_ rubygems _ version= (12) - requirements (12)
- requirements= (12)
-
requirements
_ list (12) - requires (12)
-
response
_ body _ permitted? (12) -
satisfied
_ by? (12) -
satisfies
_ requirement? (12) -
set
_ form _ data (12) - shift (24)
- size (2)
- specific? (12)
-
to
_ a (12) -
to
_ ary (12) -
to
_ s (12) - unpack (12)
-
version
_ requirement (12) -
version
_ requirement= (12) -
version
_ requirements (12) -
version
_ requirements= (12) - write (12)
-
write
_ require _ paths _ file _ if _ needed (12)
検索結果
先頭5件
-
WEBrick
:: HTTPUtils :: FormData # [](header) -> String | nil (13.0) -
自身が multipart/form-data なデータの場合に、header で指定された ヘッダの値を文字列で返します。無ければ nil を返します。
...nil を返します。
@param header ヘッダ名を文字列で指定します。大文字と小文字を区別しません。
例:
require "webrick/cgi"
class MyCGI < WEBrick::CGI
def do_GET(req, res)
p req.query['q']['content-type'] #=> "plain/text"
end
end
MyCGI.new.start()... -
WEBrick
:: HTTPUtils :: FormData # each _ data {|s| . . . } (13.0) -
自身が表す各フォームデータを引数として、与えられたブロックを実行します。
...す各フォームデータを引数として、与えられたブロックを実行します。
例:
require "webrick/cgi"
class MyCGI < WEBrick::CGI
def do_GET(req, res)
req.query['q'].each_data{|s|
p s
}
#=> "val1"
"val2"
"val3"
end
end
MyCGI.ne... -
WEBrick
:: HTTPUtils :: FormData # filename -> String | nil (13.0) -
フォームデータの filename 属性を文字列で表すアクセサです。
...性を文字列で表すアクセサです。
@param value フォームデータの filename 属性を文字列で指定します。
例:
require "webrick/cgi"
class MyCGI < WEBrick::CGI
def do_GET(req, res)
p req.query['q'].filename #=> "my_file.txt"
end
end
MyCGI.new.start()... -
WEBrick
:: HTTPUtils :: FormData # filename=(value) (13.0) -
フォームデータの filename 属性を文字列で表すアクセサです。
...性を文字列で表すアクセサです。
@param value フォームデータの filename 属性を文字列で指定します。
例:
require "webrick/cgi"
class MyCGI < WEBrick::CGI
def do_GET(req, res)
p req.query['q'].filename #=> "my_file.txt"
end
end
MyCGI.new.start()... -
WEBrick
:: HTTPUtils :: FormData # list -> Array (13.0) -
自身が表す各フォームデータを収納した配列を生成して返します。
...自身が表す各フォームデータを収納した配列を生成して返します。
例:
require "webrick/cgi"
class MyCGI < WEBrick::CGI
def do_GET(req, res)
p req.query['q'].list #=> ["val1", "val2", "val3"]
end
end
MyCGI.new.start()... -
WEBrick
:: HTTPUtils :: FormData # to _ ary -> Array (13.0) -
自身が表す各フォームデータを収納した配列を生成して返します。
...自身が表す各フォームデータを収納した配列を生成して返します。
例:
require "webrick/cgi"
class MyCGI < WEBrick::CGI
def do_GET(req, res)
p req.query['q'].list #=> ["val1", "val2", "val3"]
end
end
MyCGI.new.start()...