Rake (software)

{{multiple issues|

{{More citations needed|date=February 2024}}

{{Tone|date=January 2016}}

}}

{{Infobox software

| name = Rake

| screenshot =

| caption =

| developer = Jim Weirich

| latest release version = 13.2.1{{cite web|date=April 5, 2024|title=Release v13.2.1 · ruby/rake · GitHub|url=https://github.com/ruby/rake/releases/tag/v13.2.1|website=GitHub|access-date=June 21, 2024}}

| latest release date = {{Start date and age|2024|04|05}}

| operating system = Cross-platform

| programming language = Ruby

| genre = Software development tools

| license = MIT License

| website = {{URL|https://ruby.github.io/rake/}}

}}

Rake is a software task management and a build automation tool created by Jim Weirich. It allows the user to specify tasks and to describe dependencies as well as to group tasks into namespaces. It is similar to SCons and Make. Rake was written in Ruby and has been part of the standard library of Ruby since version 1.9.{{cite web |author= |date=n.d. |title=Rake -- Ruby Make |url=https://ruby.github.io/rake/ |access-date=February 28, 2024}}{{cite web |url=https://svn.ruby-lang.org/repos/ruby/tags/v1_9_1_0/NEWS|archive-url=https://web.archive.org/web/20160304130146/https://svn.ruby-lang.org/repos/ruby/tags/v1_9_1_0/NEWS|archive-date=March 4, 2016|date=n.d.|title=NEWS|author=|access-date=February 29, 2024}}

Examples

The tasks that should be executed need to be defined in a configuration file called Rakefile. A Rakefile has no special syntax and contains executable Ruby code.{{Cite web |title=Rakefile Format |url=https://github.com/ruby/rake/blob/master/doc/rakefile.rdoc#label-Rakefile+Format |access-date=2024-06-21 |website=GitHub |language=en}}

= Tasks =

The basic unit in Rake is the task. A task has a name and an action block, that defines its functionality. The following code defines a task called greet that will output the text "Hello, Rake!" to the console.{{Cite web |date=2019-06-10 |title=Ruby on Rails Tutorial: Understanding Rake and Task Automation |url=https://clouddevs.com/ruby-on-rails/rake-and-task-automation/ |access-date=2024-06-21 |language=en}}

task :greet do

puts "Hello, Rake!"

endWhen defining a task, you can optionally add dependencies, that is one task can depend on the successful completion of another task. Calling the "seed" task from the following example will first execute the "migrate" task and only then proceed with the execution of the "seed" task.

task :seed => :migrate do

# This task will run after the :migrate task

end

Tasks can also be made more versatile by accepting arguments. For example, the "generate_report" task will take a date as argument. If no argument is supplied the current date is used.

task :generate_report, [:date] do |t, args|

report_date = args[:date] || Date.today

# Generate the report based on the specified date

end

A special type of task is the file task, which can be used to specify file creation tasks. The following task, for example, is given two object files, i.e. "a.o" and "b.o", to create an executable program.{{Cite web |title=Rakefile Format # File Tasks |url=https://github.com/ruby/rake/blob/master/doc/rakefile.rdoc#label-File+Tasks |access-date=2024-06-21 |website=GitHub |language=en}}

file "prog" => ["a.o", "b.o"] do |t|

sh "cc -o #{t.name} #{t.prerequisites.join(' ')}"

end

Another useful tool is the directory convenience method, that can be used to create directories upon demand.{{Cite web |title=Rakefile Format # Direcpory Tasks |url=https://github.com/ruby/rake/blob/master/doc/rakefile.rdoc#label-Directory+Tasks |access-date=2024-06-21 |website=GitHub |language=en}}

directory "testdata/examples/doc"

=Rules=

When a file is named as a prerequisite but it does not have a file task defined for it, Rake will attempt to synthesize a task by looking at a list of rules supplied in the Rakefile. For example, suppose we were trying to invoke task "mycode.o" with no tasks defined for it. If the Rakefile has a rule that looks like this:

rule '.o' => '.c' do |t|

sh "cc #{t.source} -c -o #{t.name}"

end

This rule will synthesize any task that ends in ".o". It has as a prerequisite that a source file with an extension of ".c" must exist. If Rake is able to find a file named "mycode.c", it will automatically create a task that builds "mycode.o" from "mycode.c". If the file "mycode.c" does not exist, Rake will attempt to recursively synthesize a rule for it.

When a task is synthesized from a rule, the source attribute of the task is set to the matching source file. This allows users to write rules with actions that reference the source file.{{Cite web |title=Rakefile Format # Rules |url=https://github.com/ruby/rake/blob/master/doc/rakefile.rdoc#label-Rules |access-date=2024-06-21 |website=GitHub |language=en}}

=Advanced rules=

Any regular expression may be used as the rule pattern. Additionally, a proc may be used to calculate the name of the source file. This allows for complex patterns and sources.

The following rule is equivalent to the example above:

rule(/\.o$/ =>

->(t_name){ t_name.sub /\.o$/, '.c' }) do |t|

sh "cc #{t.source} -c -o #{t.name}"

end

NOTE: Because of a quirk in Ruby syntax, parentheses are required around a rule when the first argument is a regular expression.

The following rule might be used for Java files:{{Cite web |title=Rakefile Format # Advanced Rules |url=https://github.com/ruby/rake/blob/master/doc/rakefile.rdoc#label-Advanced+Rules |access-date=2024-06-21 |website=GitHub |language=en}}

rule '.class' => ->(t_name){ t_name

.sub(/\.class$/, '.java')

.sub(/^classes\//, 'src/') } do |t|

java_compile(t.source, t.name)

end

= Namespaces =

To better organize big Rakefiles, tasks can be grouped into namespaces.{{Cite web |title=Rakefile Format # Namespaces |url=https://github.com/ruby/rake/blob/master/doc/rakefile.rdoc#label-Namespaces |access-date=2024-06-21 |website=GitHub |language=en}} Below is an example of a simple Rake recipe:

namespace :cake do

desc 'make pancakes'

task :pancake => [:flour,:milk,:egg,:baking_powder] do

puts "sizzle"

end

task :butter do

puts "cut 3 tablespoons of butter into tiny squares"

end

task :flour => :butter do

puts "use hands to knead butter squares into 1 1/2 cup flour"

end

task :milk do

puts "add 1 1/4 cup milk"

end

task :egg do

puts "add 1 egg"

end

task :baking_powder do

puts "add 3 1/2 teaspoons baking powder"

end

end

See also

{{Portal|Free and open-source software}}

References

{{reflist}}