來寫Rakefile吧 -- 第一步
Rakefiles (rake's version of Makefiles)
$> touch Rakefile
$> vim Rakefile
1. 首先最簡單的範例:
task :one do
puts "One Step"
end
這個範例就是建立one這個任務,至於怎麼使用看下面的指令
$> rake one
One Step
2. 多個任務由一個任務全部執行
task :one do
puts "One Step"
end
task :two do
puts "Two Step"
end
task :three do
puts "Three Step"
end
task :all =>[:one, :two, :three] do
puts "Run All"
end
$> rake all
One Step
Two Step
Three Step
Run All
當然如果你要執行順序改變的話,就將[]中的變數換成位置就好
看起來要寫Rakefile其實滿容易上手,這篇只是簡單說明Rakefile怎麼寫而已之後我會在繼續寫新的東西。
$> touch Rakefile
$> vim Rakefile
1. 首先最簡單的範例:
task :one do
puts "One Step"
end
這個範例就是建立one這個任務,至於怎麼使用看下面的指令
$> rake one
One Step
2. 多個任務由一個任務全部執行
task :one do
puts "One Step"
end
task :two do
puts "Two Step"
end
task :three do
puts "Three Step"
end
task :all =>[:one, :two, :three] do
puts "Run All"
end
$> rake all
One Step
Two Step
Three Step
Run All
當然如果你要執行順序改變的話,就將[]中的變數換成位置就好
看起來要寫Rakefile其實滿容易上手,這篇只是簡單說明Rakefile怎麼寫而已之後我會在繼續寫新的東西。
留言