Skip to content

Instantly share code, notes, and snippets.

View edmundsalvacion's full-sized avatar

Edmund Salvacion edmundsalvacion

View GitHub Profile
@edmundsalvacion
edmundsalvacion / gist:2892028
Created June 7, 2012 22:20
SoundTracking Jenkins Theme
#top-panel {
background: url('http://assets2.soundtracking.com/images/layout/wood_toolbar.jpg?1338941734') top left repeat-x;
}
%w(app as).each do |role|
desc "Adds #{role} to the target roles for the task"
task(role) do
if ENV['ROLES']
ENV['ROLES'] += ",#{role}"
else
ENV['ROLES'] = role
end
end
end