Skip to content

Instantly share code, notes, and snippets.

@ioptics
Created April 1, 2009 20:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ioptics/88895 to your computer and use it in GitHub Desktop.
Save ioptics/88895 to your computer and use it in GitHub Desktop.
# Plugins
plugin 'haml', :git => "git://github.com/nex3/haml.git"
plugin 'factory_girl', :git => "git://github.com/thoughtbot/factory_girl.git"
plugin 'paperclip', :git => "git://github.com/thoughtbot/paperclip.git"
plugin 'paperclippolymorph', :git => "git://github.com/heavysixer/paperclippolymorph.git"
plugin 'make_resourceful', :git => "git://github.com/hcatlin/make_resourceful.git"
# Gems
gem 'thoughtbot-shoulda', :source => "http://gems.github.com"
# Commands
run "curl -L http://jqueryjs.googlecode.com/files/jquery-1.2.6.min.js > public/javascripts/jquery.js"
run "touch tmp/.gitignore log/.gitignore vendor/.gitignore"
run %{find . -type d -empty | grep -v "vendor" | grep -v ".git" | grep -v "tmp" | xargs -I xxx touch xxx/.gitignore}
file '.gitignore', <<-END
.DS_Store
log/*.log
tmp/**/*
config/database.yml
db/*.sqlite3
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment