Sha256: 9e1a9aa221c6e7ef86f66cac3ea7d176e43755ecaa9fbcd953235b0ffb092959
Contents?: true
Size: 1.44 KB
Versions: 7
Compression:
Stored size: 1.44 KB
Contents
module Appstats class Result < ActiveRecord::Base set_table_name "appstats_results" attr_accessible :name, :result_type, :query, :query_to_sql, :count, :action, :host, :from_date, :to_date, :contexts, :group_by, :query_type has_many :sub_results, :table_name => 'appstats_subresults', :foreign_key => 'appstats_result_id', :order => 'count DESC' def date_to_s return "" if from_date.nil? && to_date.nil? from_s = nil to_s = nil if !from_date.nil? && to_date.nil? && created_at.nil? from_s = from_date_to_s to_s = "present" elsif !from_date.nil? && to_date.nil? && !created_at.nil? from_s = from_date_to_s to_s = created_at.strftime('%Y-%m-%d') elsif from_date.nil? && !to_date.nil? from_s = "up" to_s = to_date_to_s else from_s = from_date_to_s to_s = to_date_to_s end return from_s if from_s == to_s "#{from_s} to #{to_s}" end def from_date_to_s return "" if from_date.nil? from_date.strftime('%Y-%m-%d') end def to_date_to_s return "" if to_date.nil? to_date.strftime('%Y-%m-%d') end def ==(o) o.class == self.class && o.send(:state) == state end alias_method :eql?, :== private def state [name, result_type, query, query_to_sql, count, action, host, from_date, to_date,contexts,group_by,query_type] end end end
Version data entries
7 entries across 7 versions & 1 rubygems