Class: Product
- Inherits:
-
Sequel::Model
- Object
- Sequel::Model
- Product
- Defined in:
- app/models/product.rb
Instance Method Summary collapse
Instance Method Details
#before_save ⇒ Object
4 5 6 7 |
# File 'app/models/product.rb', line 4 def before_save self.slug ||= self.name.downcase.gsub(/[^a-z0-9]/, '-') super end |