Tag Archives: web tips

The best solution to this warning: Giving a path to render :action is deprecated.

I for one welcome this change and deprecation warning.

Posted in open source, programming, Ruby programming, web programming | 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

Why you should have and maintain tests for your code: Reason #23

You must have tests for your critical features. You should have tests for your entire application.

You should run your tests before you start a major refactor of your code. Tests should pass.

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