I got Argument 1 for 0 (sum method) error with rails 2.3.
Have to modified / lib / indicators / calculations / helper.rb
sum method to:
unless method_defined?(:sum)
# Compute the sum of the values of an Array.
def sum
return self.inject(0){|accum, i| accum + i }
end
end