today_ai_weather/lib/tasks/study_rake.rake

7 lines
451 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

desc "study rake about rails" # desc 是Rake定义的方法,表示对下面定义任务的描述.这个描述会在使用Rake --tasks(或者Rake -T)命令时输出在屏幕上.
task :study_rake do # cmd 命令行中执行 rake study_rake 开始执行脚本task是Rake最重要的方法.它的方法定义是:task(args, &block).任务体是一个block。
%w[a b c].each do |d|
puts d # 编写你所需的功能代码。
end
end