Last active
December 14, 2015 07:38
-
-
Save 4ndrej/5051642 to your computer and use it in GitHub Desktop.
autotest + redgreen + growl
This file contains hidden or 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
# prepare for autotest + redgreen + growl | |
yum install libffi-devel | |
cat <<EOT >> Gemfile | |
group :test do | |
gem 'autotest' | |
gem 'autotest-growl' | |
gem 'autotest-fsevent' | |
gem 'redgreen' | |
end | |
EOT | |
cat <<EOT > ~/.autotest | |
require "autotest/growl" | |
require "autotest/fsevent" | |
require "autotest/restart" | |
require "redgreen/autotest" | |
EOT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment