desc 'Install all dependencies'
task :install do
puts "Use any shell command here."
puts "Syntax require we ident with TABs"
system "apt-get install git -y"
end
desc 'Configure everything'
task :configure do
system 'git-config --global user.name "Gabriel Mazetto"
system 'git-config --global user.email "
[email protected]"'
end
task :default => [:install, :configure]