This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.document | Wed May 06 11:03:32 -0700 2009 | |
| |
.gitignore | Wed May 06 11:03:32 -0700 2009 | |
| |
LICENSE | Wed May 06 11:03:32 -0700 2009 | |
| |
README.rdoc | Wed Jun 03 07:41:37 -0700 2009 | |
| |
Rakefile | Wed May 06 11:03:32 -0700 2009 | |
| |
VERSION.yml | Wed May 06 11:03:32 -0700 2009 | |
| |
WRb.js | Wed May 06 11:03:32 -0700 2009 | |
| |
app/ | Wed Jun 03 07:41:37 -0700 2009 | |
| |
bin/ | Wed May 06 11:03:32 -0700 2009 | |
| |
clicktale.gemspec | Wed May 06 11:03:32 -0700 2009 | |
| |
config/ | Wed Jun 03 07:41:37 -0700 2009 | |
| |
init.rb | Wed May 06 11:03:32 -0700 2009 | |
| |
install.rb | Wed May 06 11:03:32 -0700 2009 | |
| |
lib/ | Wed Jun 03 07:41:37 -0700 2009 |
README.rdoc
clicktale
Summary
This gem allows easys integration with Clicktale service (clicktale.com) Clicktale records user sessions, clicks, form input etc and plays them back later for usability review.
Installation
- install the plugin
> ./script/plugin install git://github.com/astrails/clicktale.git
- head to clicktale.net and signup for a free account. Or not free. Your choice.
- get a tracking code from clicktale. It should look something like this:
<!-- ClickTale Bottom part --> <div id="ClickTaleDiv" style="display: none;"></div> <script src="http://s.clicktale.net/WRb.js" type="text/javascript"></script> <script type="text/javascript"> if(typeof ClickTale=='function') ClickTale(<project_id>,<ratio>,<param>); </script> <!-- ClickTale end of Bottom part -->
- replace <project_id>, <ratio> and <param> in the autogenerated config/clicktale.yml with values from clicktale tracking code.
- add partials into layout inside the ‘body’ tag
<body> <%= clicktale_top %> ... <%= yield %> ... <%= clicktale_bottom %> </body>
Note: The plugin works by leveraging rails caching mechanism, which is by default only enabled in production environment. To enable the plugin in the development environment do the following:
* set enabled=true in config/clicktale.yml (development section)
* set config.action_controller.perform_caching=true in config/environments/development.rb
Another Note: As of this writing, clicktale service ignores existance of Safari browser. I hope it will someday.
Copyright
Copyright © 2009 Michael Mazyar. See LICENSE for details.







