ioptics (owner)

Forks

Revisions

gist: 88895 Download_button fork
public
Public Clone URL: git://gist.github.com/88895.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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