Tag Archives: environments

Upgrading from Leopard to Lion the painful way

The painful way:

Backup with TimeMachine
Upgrade to Snow Leopard
Upgrade to Lion
Restore essential data from TimeMachine

Posted in developer tools, programming, Ruby programming, software engineering | Also tagged , , , , , | Leave a comment

How to push a particular branch to Heroku

This is just a shortcut to a command I found here: http://devcenter.heroku.com/articles/git This is my .git/config: 1234567891011121314151617[core]   repositoryformatversion = 0   filemode = true   bare = false   logallrefupdates = true   ignorecase = true [heroku]   account = personal [remote "heroku"]   url = git@heroku.personal:censo2010.git   fetch = +refs/heads/*:refs/remotes/heroku/* [remote "origin"]   [...]

Posted in developer tools, linux/unix world, programming, web programming | Also tagged , , , , , , , | Leave a comment

how to stop creating projects by mistake with `rails console` or `rails server`

It’s pretty annoying to do `rails c`, `rails console`, or `rails server` and have Rails 2.x create a Rails structure. This is my solution. 1sudo gem uninstall rails (All versions!) From now on I am using rvm for any project. rvm rocks!

Posted in developer tools, programming, Ruby programming, web programming | Also tagged , , , , | Leave a comment