README.rdoc in mixpanel-1.1.2 vs README.rdoc in mixpanel-1.1.3
- old
+ new
@@ -55,10 +55,14 @@
To execute any javascript API call
@mixpanel.append_api("register", {:some => "property"})
@mixpanel.append_api("identify", "Unique Identifier")
+If you are proxying Mixpanel API requests then you can set a custom url and additionally stop the token from being sent by marking it as false if you're going to let the proxy add it...
+
+ @mixpanel = Mixpanel::Tracker.new(flase, request.env, true, 'http://localhost:8000/mixpanelproxy?data=')
+
== Resque and Rails example
If you don't want to use the built in Mixpanel Gem async feature bellow there is an example about how to make async calls using Resque.
{Resque is a Redis-backed Ruby library for creating background jobs}[https://github.com/defunkt/resque]
@@ -111,5 +115,6 @@
* {Jake Mallory}[https://github.com/tinomen]
* {Logan Bowers}[https://github.com/loganb]
* {jakemack}[https://github.com/jakemack]
* {James Ferguson}[https://github.com/JamesFerguson]
* {Brad Wilson}[https://github.com/bradx3]
+* {Mark Cheverton}[https://github.com/ennui2342]