るりまサーチ

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

別のキーワード

  1. rexml comment
  2. comment new
  3. comment to_s
  4. cookie comment
  5. comment clone

検索結果

REXML::Element#comments -> [REXML::Comments] (24419.0)

すべての comment 子ノードの配列を返します。

...すべての comment 子ノードの配列を返します。

返される配列は freeze されます。...

RSS::Maker::ItemsBase::ItemBase#comments (24203.0)

@todo

@todo

RSS::Rss::Channel::Item#comments (24203.0)

@todo

@todo

RDoc::Parser::Simple#remove_private_comments(comment) -> String (12325.0)

行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返 します。

...行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返
します。

@param comment 対象の文字列を指定します。

@return コメントが削除された文字列を返します。...

RSS::Maker::ItemsBase::ItemBase#comments=() (12203.0)

@todo

@todo

絞り込み条件を変える

RSS::Rss::Channel::Item#comments= (12203.0)

@todo

@todo

Net::HTTPHeader#content_type -> String|nil (13.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) (13.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|...