Wednesday, June 16, 2010

what is RAKE

Rake is a build language, similar in purpose to make and ant. Like make and ant it's a Domain Specific Language, unlike those two it's an internal DSL programmed in the Ruby language.Rake is written in Ruby and heavily uses the language.

The basic idea of a domain specific language (DSL) is a computer language that's targeted to a particular kind of problem, rather than a general purpose language that's aimed at any kind of software problem.

namespace :kho do
desc "Hey"
task :sandeepa => [:clean, you can include multiple depedency ] do
puts "Hello world"
end
end


For detail please visit
http://martinfowler.com/articles/rake.html

No comments:

Post a Comment