desc “Explaining what the task does” namespace :baja do
task :blast do file = File.new("baja.yml","w+") file.puts "#factories:\n# -gem_with_factory\n# -another_gem_with_factory\n#specs:\n# -gem_with_specs\n# -another_gem_with_specs" file.close end
end