Created
April 24, 2010 18:21
-
-
Save mattsoldo/377828 to your computer and use it in GitHub Desktop.
This file contains 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
def heroku(command = {}) | |
in_root do | |
if command.is_a?(Symbol) | |
log 'running', "heroku #{command}" | |
run "heroku #{command}" | |
else | |
command.each do |command, options| | |
log 'running', "heroku #{command} #{options}" | |
run("heroku #{command} #{options}") | |
end | |
end | |
end | |
end | |
generate :nifty_layout | |
gem 'haml' | |
gem 'will_paginate' | |
gem 'formtastic' | |
gem "factory_girl" | |
gem 'shoulda' | |
gem 'hassle' | |
file ".gems", <<-END | |
dry_scaffold | |
will_paginate | |
formtastic | |
factory_girl | |
inherited_resources --version 1.0.6 | |
shoulda | |
hassle | |
END | |
############## commands ################# | |
git :init | |
file ".gitignore", <<-END | |
.DS_Store | |
log/*.log | |
tmp/**/* | |
config/database.yml | |
db/*.sqlite3 | |
END | |
run "touch tmp/.gitignore log/.gitignore vendor/.gitignore" | |
run "cp config/database.yml config/example_database.yml" | |
git :add => ".", :commit => "-m 'initial commit'" | |
generate :formtastic | |
git :add => ".", :commit => "-m 'formtastic stylesheets'" | |
generate :controller, "welcome index" | |
route "map.root :controller => 'welcome'" | |
git :rm => "public/index.html" | |
git :add => ".", :commit => "-m 'adding welcome controller'" | |
## Delpoy to Heroku | |
heroku :create | |
git :push => "heroku master" | |
heroku :rake => "db:migrate" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment