528件ヒット
[501-528件を表示]
(0.071秒)
ライブラリ
- etc (24)
-
net
/ http (12) - rake (60)
-
rake
/ loaders / makefile (12) -
rdoc
/ code _ object (24) -
rdoc
/ context (36) -
rdoc
/ parser / simple (12) -
rdoc
/ text (24) -
rexml
/ document (132) -
rexml
/ parsers / pullparser (12) -
rexml
/ parsers / sax2parser (60) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) - rss (48)
- zlib (24)
クラス
-
Etc
:: Passwd (24) -
RDoc
:: CodeObject (24) -
RDoc
:: Context (12) -
RDoc
:: Context :: Section (24) -
RDoc
:: Parser :: Simple (12) -
REXML
:: Comment (84) -
REXML
:: DocType (36) -
REXML
:: Element (12) -
REXML
:: Parsers :: PullEvent (12) -
REXML
:: Parsers :: SAX2Parser (60) -
RSS
:: Maker :: ItemsBase :: ItemBase (24) -
RSS
:: Rss :: Channel :: Item (24) -
Rake
:: MakefileLoader (12) -
Rake
:: Task (36) -
WEBrick
:: Cookie (24) -
Zlib
:: GzipFile (12) -
Zlib
:: GzipWriter (12)
モジュール
-
Net
:: HTTPHeader (12) -
RDoc
:: Text (24) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12) -
Rake
:: TaskManager (24)
キーワード
- <=> (12)
- == (12)
-
attribute
_ of (12) -
attributes
_ of (12) - clone (12)
- comment= (60)
- comment? (12)
- comments (36)
- comments= (24)
-
content
_ type (12) -
full
_ comment (12) -
last
_ comment (12) -
last
_ description (12) - listen (60)
- load (12)
-
node
_ type (12) -
normalize
_ comment (12) - parse (12)
-
remove
_ private _ comments (12) -
set
_ comment (12) -
set
_ current _ section (12) - string (12)
- string= (12)
-
to
_ s (12) - write (12)
検索結果
先頭3件
-
REXML
:: Parsers :: SAX2Parser # listen(sym , ary) { . . . } -> () (13.0) -
コールバックをパーサに登録します。
...ata
(CDATA セクション, REXML::SAX2Listener#cdata)
* :xmldecl
(XML 宣言, REXML::SAX2Listener#xmldecl)
* :comment
(コメント, REXML::SAX2Listener#comment)
* :progress
(入力を読み進める, REXML::SAX2Listener#progress)
ary には配列を指定し、要素名に... -
Net
:: HTTPHeader # content _ type -> String|nil (7.0) -
"text/html" のような Content-Type を表す 文字列を返します。
...が存在しない場合には nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/comments.cgi?post=comment')
req = Net::HTTP::Post.new(uri.request_uri)
req.content_type # => nil
req.content_type = 'multipart/form-data'
req.content_type # => "m... -
Rake
:: MakefileLoader # load(filename) (7.0) -
与えられた Makefile をロードします。
...require "rake/loaders/makefile"
task default: :test_rake_app
open "sample.mf", "w" do |io|
io << <<-'SAMPLE_MF'
# Comments
a: a1 a2 a3 a4
b: b1 b2 b3 \
b4 b5 b6\
# Mid: Comment
b7
a : a5 a6 a7
c: c1
d: d1 d2 \
e f : e1 f1
g\ 0: g1 g\ 2 g\ 3 g4
SAMPLE_MF
end
task :test_rake_app do |task|...