lib/attractor/calculators/base_calculator.rb in attractor-2.3.0 vs lib/attractor/calculators/base_calculator.rb in attractor-2.4.0
- old
+ new
@@ -38,13 +38,13 @@
value = cached_value
else
complexity, details = yield(change)
value = Value.new(file_path: change[:file_path],
- churn: change[:times_changed],
- complexity: complexity,
- details: details,
- history: history)
+ churn: change[:times_changed],
+ complexity: complexity,
+ details: details,
+ history: history)
Cache.write(file_path: change[:file_path], value: value)
end
print "."
value