216件ヒット
[101-200件を表示]
(0.098秒)
別のキーワード
ライブラリ
- etc (12)
-
net
/ http (12) - rake (48)
-
rake
/ loaders / makefile (12) -
rdoc
/ code _ object (12) -
rdoc
/ context (12) -
rdoc
/ parser / simple (12) -
rdoc
/ text (12) -
rexml
/ document (48) - zlib (24)
クラス
-
Etc
:: Passwd (12) -
RDoc
:: CodeObject (12) -
RDoc
:: Context :: Section (12) -
RDoc
:: Parser :: Simple (12) -
REXML
:: Comment (36) -
REXML
:: DocType (12) -
Rake
:: MakefileLoader (12) -
Rake
:: Task (24) -
WEBrick
:: Cookie (12) -
Zlib
:: GzipFile (12) -
Zlib
:: GzipWriter (12)
モジュール
-
Net
:: HTTPHeader (12) -
RDoc
:: Text (12) -
Rake
:: TaskManager (24)
キーワード
-
attribute
_ of (12) - comment= (12)
-
content
_ type (12) -
full
_ comment (12) -
last
_ comment (12) -
last
_ description (12) - load (12)
-
normalize
_ comment (12) -
remove
_ private _ comments (12) - string (12)
- string= (12)
-
to
_ s (12)
検索結果
先頭5件
-
REXML
:: Comment # string -> String (9201.0) -
コメント文字列を返します。
コメント文字列を返します。 -
REXML
:: Comment # string=(value) (9101.0) -
コメント文字列を設定します。
コメント文字列を設定します。
@param value 設定する文字列 -
RDoc
:: Parser :: Simple # remove _ private _ comments(comment) -> String (6324.0) -
行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返 します。
...行頭の "--" から "++" で囲まれたコメントを comment から削除した結果を返
します。
@param comment 対象の文字列を指定します。
@return コメントが削除された文字列を返します。... -
RDoc
:: Text # normalize _ comment(text) -> String (6202.0) -
引数から行頭のスペースや改行文字などを削除します。
引数から行頭のスペースや改行文字などを削除します。
詳しくは [SEE ALSO] の各メソッドを参照してください。
@param text 文字列を指定します。
@see RDoc::Text#strip_hashes, RDoc::Text#expand_tabs,
RDoc::Text#flush_left, RDoc::Text#strip_newlines -
Rake
:: Task # full _ comment -> String (6202.0) -
自身のコメントを全て返します。
自身のコメントを全て返します。 -
Rake
:: TaskManager # last _ description -> String (6102.0) -
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
Rakefile 内の最新の詳細説明を追跡するためのメソッドです。
//emlist[][ruby]{
# Rakefile での記載例とする
task default: :test_rake_app1
desc "test1"
task :test_rake_app1 do |task|
p task.application.last_description # => "test2"
end
desc "test2"
task :test_rake_app2 do |task|
end
//} -
REXML
:: Comment # to _ s -> String (6101.0) -
コメント文字列を返します。
コメント文字列を返します。 -
REXML
:: DocType # attribute _ of(element , attribute) -> String | nil (113.0) -
DTD 内の属性リスト宣言で、 element という名前の要素の attribute という 名前の属性のデフォルト値を返します。
...(文字列)
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">... -
Net
:: HTTPHeader # content _ type -> String|nil (107.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...