Sha256: cdecd84337c5db79a142f5985b2f1042c5985fc70af6f27941a1c1c610795e20

Contents?: true

Size: 587 Bytes

Versions: 2

Compression:

Stored size: 587 Bytes

Contents

server :vagrant, {
	:host => "localhost",
	:user => 'vagrant',
	:ssh => {
		:port => 2222,
		:password => 'vagrant'
	},
	:installer => :apt
}

repo :test, {
	:url => "https://github.com/joshglendenning/profile.git"
}

task :foo do
	sh "echo 'foo'"
end

task :foobar => :foo do
	sh "echo 'bar'"
end

task :install => :foobar do
	install 'zsh'
	sh "echo 'test'"
	sh "echo 'test2'"
	sh "echo 'test3'"
	repo_clone :test, "dest"
end

task :broken => :foo do
	sh "notacommand"
end

task :sudo do
	sh "sudo -S echo 'this is a sudo echo'"
end

task :git_clone do
	repo_clone :test, "~/test"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shaddox-0.0.13 Doxfile
shaddox-0.0.12 Doxfile