Skip to content

Commit

Permalink
Adding CSS tools
Browse files Browse the repository at this point in the history
  • Loading branch information
marktheunissen committed Aug 17, 2012
1 parent 2138a76 commit f3747de
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ubuntu-12.04-lamp-dev/run-local-all
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh

# Script for running the play on the localhost, everything included.
ansible-playbook -c local --tags="common,drush,ftp,nodejs,redis" ./setup.yml
ansible-playbook -c local --tags="common,drush,ftp,nodejs,redis,css" ./setup.yml
23 changes: 23 additions & 0 deletions ubuntu-12.04-lamp-dev/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,29 @@
action: apt pkg=redis-server state=installed
tags: redis

##
# CSS compiling tools.
#
- name: Install rubygems package
action: apt pkg=rubygems state=installed
tags: css

- name: Install SASS
action: command gem install sass creates=/usr/local/bin/sass
tags: css

- name: Install Susy
action: command gem install susy --pre
tags: css

- name: Install Compass
action: command gem install compass creates=/usr/local/bin/compass
tags: css

- name: Install Respond-to
action: command gem install respond-to
tags: css

##
# Restart services
#
Expand Down

0 comments on commit f3747de

Please sign in to comment.