72件ヒット
[1-72件を表示]
(0.084秒)
別のキーワード
ライブラリ
- rake (12)
-
rake
/ loaders / makefile (12) -
rdoc
/ context (36) -
rexml
/ document (12)
クラス
-
RDoc
:: Context (12) -
RDoc
:: Context :: Section (24) -
REXML
:: DocType (12) -
Rake
:: MakefileLoader (12)
モジュール
-
Rake
:: TaskManager (12)
キーワード
-
last
_ description (12) - load (12)
-
set
_ comment (12) -
set
_ current _ section (12) - write (12)
検索結果
先頭5件
-
RDoc
:: Context :: Section # comment -> String | nil (21102.0) -
section のコメントを返します。
...section のコメントを返します。... -
RDoc
:: Context :: Section # set _ comment(comment) -> () (9221.0) -
自身にコメントを設定します。
...m comment 文字列を指定します。
comment の最初の行に :section: を含んでいた場合、その行以降の文字列をコ
メントとして設定します。そうでない場合は comment すべてをコメントとして
設定します。
# ---------------------
# :sectio... -
RDoc
:: Context # set _ current _ section(title , comment) -> () (6202.0) -
Handle sections
...Handle sections... -
Rake
:: TaskManager # last _ description -> String (6102.0) -
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
:: DocType # write(output , indent = 0 , transitive = false , ie _ hack = false) -> () (25.0) -
output に DTD を出力します。
...に DTD を出力します。
このメソッドは deprecated です。REXML::Formatter で
出力してください。
@param output 出力先の IO オブジェクト
@param indent インデントの深さ。指定しないでください。
@param transitive 無視されます。指定しな......(comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
<!ENTITY p "foobar publisher">
<!ENTITY % q "quzz">
]>
EOS
doctype.write(STDOUT)
# =>
# <!DOCTYPE books [
# <!ELEMENT book (comment)... -
Rake
:: MakefileLoader # load(filename) (19.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_ap...