Tag: ruby on rails

Rails Rumble 2007 – Whats Your Habit?

The Rails Rumble 2007 programming contest is now accepting votes for the best applications. My entry is called Whats your habit? and is a web program designed to help people easily track their habits. Please go and vote at the Rails Rumble Voting site and leave your comments here. My goal with the program was …

Read more

Adding custom data to Redmine

Redmine is an Open Source project management application created by Jean-Philippe Lang using Ruby on Rails. I have been using it to track ongoing projects for my business. One great area where Redmine shines is how simple it has been to add custom data. I have used many project management programs and bug trackers, and …

Read more

Testing exceptions in Rails

If you want to make sure an exception is thrown in a Rails test just use the assert_raise assertion. For example, I am testing to make sure the SQL statement is invalid after it goes through my model’s validation def test_exception c = Content.new # Title is missing assert_raise ActiveRecord::StatementInvalid do c.save end end This …

Read more

Ruby and Rails Jobs

Just in case someone has missed it there is a website that has a list of Ruby and Ruby on Rails job postings. I have been tracking it since it started and have noticed a surge in posting recently. Eric Davis

Read more