Skip to content

Commit

Permalink
tweaking dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacques Crocker committed Jun 1, 2011
1 parent c8ccfd6 commit 1a9dec1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ source :rubygems

gemspec

gem "bson_ext"

gem "ruby-debug", :platforms => :mri_18
gem "ruby-debug19", :platforms => :mri_19

Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ GEM
specs:
archive-tar-minitar (0.5.2)
bson (1.3.1)
bson_ext (1.3.1)
columnize (0.3.2)
diff-lcs (1.1.2)
growl (1.0.3)
Expand Down Expand Up @@ -53,6 +54,7 @@ PLATFORMS

DEPENDENCIES
aarrr!
bson_ext
growl
guard
guard-rspec
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ AARRR is now set up, and will add an `around` filter to each request so it can h

## How to add tracking

AARRR defines a helper method `AARRR()` that returns a "session" object. actually just an alias to AARRR.create_session(request.env). The session object's purpose is to define a user uniquely. All tracking events should be called from the session object
AARRR defines a helper method `AARRR()` that returns a "session" object. actually just an alias to AARRR::Session.new(). The session object's purpose is to define a user uniquely. All tracking events should be called from the session object

You can get a session in a few different ways:

Expand Down
1 change: 1 addition & 0 deletions lib/aarrr.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# encoding: utf-8

require "mongo"
require "aarrr/config"
require "aarrr/session"

Expand Down

0 comments on commit 1a9dec1

Please sign in to comment.