PRECIO_REGEX = /^([1-9]\d{0,5}|0)(\.\d{1,2})?$/ validates :price, :presence => true, :format => PRECIO_REGEX
Gracias de antemano por la ayuda.
Publicado 09 junio 2014 - 22:38
PRECIO_REGEX = /^([1-9]\d{0,5}|0)(\.\d{1,2})?$/ validates :price, :presence => true, :format => PRECIO_REGEX
Publicado 10 junio 2014 - 04:13
class Product < ActiveRecord::Base validates_numericality_of :price, :greater_than => 0, :less_than => 1000000 end
Publicado 10 junio 2014 - 05:04