Sha256: a64849f1e9bca3133847e1de1063527dfb2a773aef267c2b91240e4a5c28bdb5

Contents?: true

Size: 1.07 KB

Versions: 15

Compression:

Stored size: 1.07 KB

Contents

class Country < ActiveRecord::Base
  include MasterModel
  default_scope { order('countries.position') }
  has_many :agents
  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
  validates :name, presence: true, format: { with: /\A[0-9A-Za-z][0-9A-Za-z_\-\s,]*[0-9a-z]\Z/ }

  after_save :clear_all_cache
  after_destroy :clear_all_cache

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

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

  private

  def valid_name?
    true
  end
end

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

Version data entries

15 entries across 14 versions & 2 rubygems

Version Path
enju_biblio-0.3.2 app/models/country.rb
enju_biblio-0.3.1 app/models/country.rb
enju_biblio-0.3.0 app/models/country.rb
enju_biblio-0.3.0.rc.1 app/models/country.rb
enju_biblio-0.3.0.beta.2 app/models/country.rb
enju_biblio-0.2.5 app/models/country.rb
enju_biblio-0.2.4 app/models/country.rb
enju_biblio-0.2.3 app/models/country.rb
enju_biblio-0.2.2 app/models/country.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_biblio-0.2.1/app/models/country.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/enju_biblio-0.2.0/app/models/country.rb
enju_biblio-0.2.1 app/models/country.rb
enju_biblio-0.2.0 app/models/country.rb
enju_biblio-0.2.0.beta.4 app/models/country.rb
enju_biblio-0.2.0.beta.3 app/models/country.rb