Sha256: af7c74ec8a2395a5dd29bfe3dd3d185e8389b7098cc1f461933229c40b3da7d6
Contents?: true
Size: 1.15 KB
Versions: 3
Compression:
Stored size: 1.15 KB
Contents
require 'rubygems' require 'active_record' require "#{File.dirname(__FILE__)}/appstats/acts_as_appstatsable" require "#{File.dirname(__FILE__)}/appstats/code_injections" require "#{File.dirname(__FILE__)}/appstats/entry" require "#{File.dirname(__FILE__)}/appstats/entry_date" require "#{File.dirname(__FILE__)}/appstats/date_range" require "#{File.dirname(__FILE__)}/appstats/action" require "#{File.dirname(__FILE__)}/appstats/context" require "#{File.dirname(__FILE__)}/appstats/tasks" require "#{File.dirname(__FILE__)}/appstats/logger" require "#{File.dirname(__FILE__)}/appstats/log_collector" require "#{File.dirname(__FILE__)}/appstats/parser" require "#{File.dirname(__FILE__)}/appstats/query" require "#{File.dirname(__FILE__)}/appstats/result" require "#{File.dirname(__FILE__)}/appstats/host" require "#{File.dirname(__FILE__)}/appstats/test_object" # required in the appstats.gemspec unless Appstats.const_defined?(:VERSION) require "#{File.dirname(__FILE__)}/appstats/version" end module Appstats def self.log(type,message) if $logger.nil? # puts "LOCAL LOG #{type}: #{message}" else $logger.send(type,message) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
appstats-0.8.3 | lib/appstats.rb |
appstats-0.8.2 | lib/appstats.rb |
appstats-0.8.1 | lib/appstats.rb |