Sha256: 233d85572616b922abe619a0c9184039e0f6b415831048a7edb34d9f7493b965

Contents?: true

Size: 1.09 KB

Versions: 6

Compression:

Stored size: 1.09 KB

Contents

class Country < ActiveRecord::Base
  attr_accessible :name, :display_name, :alpha_2, :alpha_3, :numeric_3, :note
  include MasterModel
  default_scope :order => "countries.position"
  has_many :patrons
  #has_many :people
  #has_many :corporate_bodies
  #has_many :families
  has_many :libraries
  has_one :library_group

  # If you wish to change the field names for brevity, feel free to enable/modify these.
  # alias_attribute :iso, :alpha_2
  # alias_attribute :iso3, :alpha_3
  # alias_attribute :numeric, :numeric_3

  # Validations
  validates_presence_of :alpha_2, :alpha_3, :numeric_3

  after_save :clear_all_cache
  after_destroy :clear_all_cache

  def self.all_cache
    Rails.cache.fetch('country_all'){Country.all}
  end

  def clear_all_cache
    Rails.cache.delete('country_all')
  end
end

# == Schema Information
#
# Table name: countries
#
#  id           :integer         not null, primary key
#  name         :string(255)     not null
#  display_name :text
#  alpha_2      :string(255)
#  alpha_3      :string(255)
#  numeric_3    :string(255)
#  note         :text
#  position     :integer
#

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
enju_biblio-0.0.6 app/models/country.rb
enju_biblio-0.0.5 app/models/country.rb
enju_biblio-0.0.4 app/models/country.rb
enju_biblio-0.0.3 app/models/country.rb
enju_biblio-0.0.2 app/models/country.rb
enju_biblio-0.0.1 app/models/country.rb