Sha256: d957d200df17356af46639923300b6bb36971d2ccc16be9f015db152d39700f0

Contents?: true

Size: 506 Bytes

Versions: 45

Compression:

Stored size: 506 Bytes

Contents

class AutomobileModelYear < ActiveRecord::Base
  set_primary_key :name
  
  belongs_to :make_year, :class_name => 'AutomobileMakeYear', :foreign_key => 'make_year_name'
  has_many :variants, :class_name => 'AutomobileVariant', :foreign_key => 'model_year_name'
  has_many :automobiles, :foreign_key => 'model_year_id'
  
  data_miner do
    tap "Brighter Planet's model year data", Earth.taps_server
    
    process "pull dependencies" do
      run_data_miner_on_belongs_to_associations
    end
  end
end

Version data entries

45 entries across 45 versions & 2 rubygems

Version Path
earth-0.2.14 lib/earth/automobile/automobile_model_year.rb
earth-0.2.13 lib/earth/automobile/automobile_model_year.rb
earth-0.2.12 lib/earth/automobile/automobile_model_year.rb
earth-0.2.11 lib/earth/automobile/automobile_model_year.rb
earth-0.2.9 lib/earth/automobile/automobile_model_year.rb
earth-0.2.8 lib/earth/automobile/automobile_model_year.rb
earth-0.2.7 lib/earth/automobile/automobile_model_year.rb
earth-0.2.6 lib/earth/automobile/automobile_model_year.rb
earth-0.2.5 lib/earth/automobile/automobile_model_year.rb
earth-0.2.4 lib/earth/automobile/automobile_model_year.rb
earth-ruby19-0.2.3 lib/earth/automobile/automobile_model_year.rb
earth-0.2.3 lib/earth/automobile/automobile_model_year.rb
earth-0.2.2 lib/earth/automobile/automobile_model_year.rb
earth-0.2.1 lib/earth/automobile/automobile_model_year.rb
earth-0.2.0 lib/earth/automobile/automobile_model_year.rb
earth-0.1.4 lib/earth/automobile/automobile_model_year.rb
earth-0.1.3 lib/earth/automobile/automobile_model_year.rb
earth-0.1.2 lib/earth/automobile/automobile_model_year.rb
earth-0.1.1 lib/earth/automobile/automobile_model_year.rb
earth-0.1.0 lib/earth/automobile/automobile_model_year.rb