GeoRSS aggregator and Layar augmented reality server
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 

12 rindas
277 B

  1. class Layer < ActiveRecord::Base
  2. has_many :subscriptions
  3. has_many :feeds, :through => :subscriptions, :uniq => true
  4. attr_accessible :name, :icon_url
  5. # Unique name for Layar layer
  6. def layar_name
  7. "apollo" + self.name.strip.downcase.gsub(/[^a-z0-9]/, '')
  8. end
  9. end