4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/automobile/data.rb', line 4
def self.included(base)
base.data_miner do
schema do
string 'make_id'
string 'model_id'
string 'model_year_id'
string 'variant_id'
string 'size_class_id'
string 'fuel_type_id'
boolean 'hybridity'
float 'urbanity'
float 'fuel_efficiency'
float 'annual_distance_estimate'
float 'weekly_distance_estimate'
float 'daily_distance_estimate'
float 'daily_duration'
date 'date'
date 'acquisition'
date 'retirement'
end
process "pull orphans" do
AutomobileMakeFleetYear.run_data_miner! end
process :run_data_miner_on_belongs_to_associations
end
end
|