るりまサーチ (Ruby 2.7.0)

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

別のキーワード

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

検索結果

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

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

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

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

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

@todo

@todo

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

@todo

@todo

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

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

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

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

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

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

@todo

@todo

絞り込み条件を変える

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

@todo

@todo

Net::HTTPHeader#content_type -> String|nil (40.0)

"text/html" のような Content-Type を表す 文字列を返します。

"text/html" のような Content-Type を表す
文字列を返します。

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/for...

Rake::MakefileLoader#load(filename) (40.0)

与えられた Makefile をロードします。

与えられた Makefile をロードします。

@param filename 読み込む Makefile の名前を指定します。

//emlist[][ruby]{
# Rakefile での記載例とする
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...