operating_system_name.rb 229 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 class OperatingSystemName < ActiveRecord::Base attr_accessible :name validates_presence_of :name validates_uniqueness_of :name has_many :operating_systems has_many :software_infos, :through => :operating_systems end