101件ヒット
[1-100件を表示]
(0.021秒)
種類
- インスタンスメソッド (96)
- 文書 (5)
ライブラリ
-
net
/ http (12) -
rake
/ loaders / makefile (12) -
rdoc
/ parser / simple (12) -
rexml
/ document (12) - rss (48)
クラス
-
RDoc
:: Parser :: Simple (12) -
REXML
:: Element (12) -
RSS
:: Maker :: ItemsBase :: ItemBase (24) -
RSS
:: Rss :: Channel :: Item (24) -
Rake
:: MakefileLoader (12)
モジュール
-
Net
:: HTTPHeader (12)
キーワード
-
NEWS for Ruby 3
. 0 . 0 (5) - comments= (24)
-
content
_ type (12) - load (12)
-
remove
_ private _ comments (12)
検索結果
先頭5件
-
REXML
:: Element # comments -> [REXML :: Comments] (24418.0) -
すべての comment 子ノードの配列を返します。
...すべての comment 子ノードの配列を返します。
返される配列は freeze されます。... -
RSS
:: Maker :: ItemsBase :: ItemBase # comments (24202.0) -
@todo
@todo -
RSS
:: Rss :: Channel :: Item # comments (24202.0) -
@todo
@todo -
RDoc
:: Parser :: Simple # remove _ private _ comments(comment) -> String (12324.0) -
行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返 します。
...行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返
します。
@param comment 対象の文字列を指定します。
@return コメントが削除された文字列を返します。... -
RSS
:: Maker :: ItemsBase :: ItemBase # comments=() (12202.0) -
@todo
@todo -
RSS
:: Rss :: Channel :: Item # comments= (12202.0) -
@todo
@todo -
NEWS for Ruby 3
. 0 . 0 (30.0) -
NEWS for Ruby 3.0.0 このドキュメントは前回リリース以降のバグ修正を除くユーザーに影響のある機能の変更のリストです。
...no longer frozen when
`# frozen-string-literal: true` is used. 17104
* Magic comment `shareable_constant_value` added to freeze constants.
See {Magic Comments}[rdoc-ref:doc/syntax/comments.rdoc@Magic+Comments] for more details.
17273
* A {static analysis}[rdoc-label:label-Static+anal......* win32ole
* Bundled gems
* net-telnet and xmlrpc have been removed from the bundled gems. If you are interested in maintaining them, please comment on your plan to https://github.com/ruby/xmlrpc or https://github.com/ruby/net-telnet.
* SDBM has been removed from the Ruby standard library. 8... -
Net
:: HTTPHeader # content _ type -> String|nil (12.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) (12.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|...