Sha256: 11c1053d2b87c85998bafa1b6e7f4aca5e1999149343f87711e7f2b5ef6d199b
Contents?: true
Size: 262 Bytes
Versions: 22
Compression:
Stored size: 262 Bytes
Contents
class Gallery < ActiveRecord::Base attr_accessible :title belongs_to :index has_many :indices, :as => :owner, :dependent => :destroy accepts_nested_attributes_for :indices, :allow_destroy => true def name title.downcase.gsub(" ", "_") end end
Version data entries
22 entries across 22 versions & 1 rubygems