章節 21 更多的結構

學習目標

讓我們來增加一個 Rakefile 01

增加一支 Rakefile 到我們的檔案庫,就像下面這樣:

檔案: Rakefile

#!/usr/bin/ruby -wKU

task :default => :run

task :run do
  require './lib/hello'
end

送交這次的編輯

執行:

git add Rakefile
git commit -m "Added a Rakefile."

您應該可以使用 Rake 來執行 hello 這支程式。

執行:

rake

輸出:

$ rake
Hello, World!

目錄