Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save colin/73970 to your computer and use it in GitHub Desktop.
Save colin/73970 to your computer and use it in GitHub Desktop.
plugin 'rspec', :git => 'git://github.com/dchelimsky/rspec.git'
plugin 'rspec-rails', :git => 'git://github.com/dchelimsky/rspec-rails.git'
plugin 'exception_notifier', :git => 'git://github.com/rails/exception_notification.git'
plugin 'asset_packager', :git => 'http://synthesis.sbecker.net/pages/asset_packager'
plugin 'make_resourceful', :git => 'git://github.com/hcatlin/make_resourceful.git'
plugin 'cucumber', :git => 'git://github.com/aslakhellesoy/cucumber.git'
plugin 'webrat', :git => 'git://github.com/brynary/webrat.git'
# gem 'mislav-will_paginate', :version => '~> 2.2.3', :lib => 'will_paginate', :source => 'http://gems.github.com'
gem 'rubyist-aasm', :lib => 'aasm'
gem 'ruby-openid', :lib => 'openid'
gem 'haml'
# gem 'term-ansicolor'
gem 'treetop'
# gem 'diff-lcs'
gem 'nokogiri'
# gem 'builder'
rake("gems:install", :sudo => true)
generate("rspec")
generate('features')
inside ('public/javascripts') do
run "rm prototype.js"
run "rm controls.js"
run "rm effects.js"
run "rm dragdrop.js"
run "cp ~/jquery-1.3.2.min.js ."
end
inside ('') do
run "haml --rails ."
run 'capify .'
end
file '.gitignore', <<-CODE
log/*.log
tmp/**/*
.DS_Store
doc/api
doc/app
coverage
db/*.sqlite3
db/development_structure.sql
db/schema.rb
public/avatars
public/uploads
public/system/uploads/*
index/*
tmp/*
*.swp
CODE
file 'log/.gitignore', <<CODE
*.log
CODE
file 'tmp/.gitignore', <<CODE
*
CODE
git :init
git :add => "."
git :commit => "-a -m 'Initial commit'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment