lib/earth/automobile/automobile_make_year.rb in earth-0.3.15 vs lib/earth/automobile/automobile_make_year.rb in earth-0.4.0

- old
+ new

@@ -1,14 +1,14 @@ class AutomobileMakeYear < ActiveRecord::Base set_primary_key :name belongs_to :make, :class_name => 'AutomobileMake', :foreign_key => 'make_name' has_many :fleet_years, :class_name => 'AutomobileMakeFleetYear', :foreign_key => 'make_year_name' - + data_miner do tap "Brighter Planet's make year data", Earth.taps_server - process "bring in dependencies" do + process "Pull dependencies" do run_data_miner_on_belongs_to_associations end end end