validations

1. %r{} is another way of specifying a regex

2. having the validation check for price.nil? will result in this message being added when the price is .... nil.     You should get two validation errors when price is nil, one complaining that it isn't a number and one saying it should be at least 0.01.

_Kevin