This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#top-panel { | |
background: url('http://assets2.soundtracking.com/images/layout/wood_toolbar.jpg?1338941734') top left repeat-x; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%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 |