我正在尋找一個基於Rails ActiveRecord的Gem來提供數據分析,以便我可以對數據進行趨勢更改。試想一下:Rails ActiveRecord數據剖析
class Report < ActiveRecord
scope :overdue, lambda { where :due_date <= Time.now }
profile_counts overdue, :frequency=>:nightly
end
的想法是認爲「profile_counts」的方法將追加到一些全球性的數據分析表,將趨勢遲交的報告計數隨着時間的推移。
請指教寶石,最佳實踐等