Tag: Rake
task :hello do puts 'hello' end
rake hello
task :hello do puts 'hello' end #task :list do # # #end fl = FileList.new('**/*') fl.exclude('tmp/**/*') fl.exclude('mydb/**/*') fl.exclude('log/**/*') fl.each do |f| puts f end