るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.009秒)
トップページ > クエリ:Comment[x] > クラス:Rake::MakefileLoader[x]

別のキーワード

  1. rexml comment
  2. comment new
  3. comment ==
  4. etc comment
  5. comment <=>

ライブラリ

検索結果

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

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

...le.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|
loader = Rake::MakefileLoader.new
loader.load("sample.mf")
p Rake::T...