Sha256: af7c6388619470cdcac78d75168d2547e39a55c4d6274fdf53d02dc739c87ac2

Contents?: true

Size: 491 Bytes

Versions: 3

Compression:

Stored size: 491 Bytes

Contents

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

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

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

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

task :install do
	repo_deploy :profile, "~/repo_test/profile"
end

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
shaddox-0.0.28 Doxfile
shaddox-0.0.27 Doxfile
shaddox-0.0.26 Doxfile