tpitale-mongolytics 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,8 +6,8 @@ module Mongolytics
6
6
  key :action, String, :required => true
7
7
  key :path, String
8
8
 
9
- many :sessions
10
- many :params
9
+ many :sessions, :class_name => 'Mongolytics::Session'
10
+ many :params, :class_name => 'Mongolytics::Param'
11
11
 
12
12
  def self.stats_for_path(path)
13
13
  count({:path => path})
@@ -3,7 +3,7 @@ module Mongolytics
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 2
6
- TINY = 0
6
+ TINY = 1
7
7
 
8
8
  def self.to_s # :nodoc:
9
9
  [MAJOR, MINOR, TINY].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tpitale-mongolytics
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Pitale