gitextract_afh5kztq/ ├── .document ├── .gitignore ├── .rspec ├── .rvmrc ├── CHANGELOG.md ├── Gemfile ├── Guardfile ├── LICENSE ├── README.rdoc ├── Rakefile ├── VERSION ├── analytical.gemspec ├── app/ │ └── views/ │ └── application/ │ └── _analytical_javascript.html.erb ├── example/ │ ├── .gitignore │ ├── rails2.3/ │ │ ├── Gemfile │ │ ├── README │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── controllers/ │ │ │ │ ├── application_controller.rb │ │ │ │ └── page_controller.rb │ │ │ ├── helpers/ │ │ │ │ └── application_helper.rb │ │ │ └── views/ │ │ │ ├── layouts/ │ │ │ │ └── application.html.erb │ │ │ └── page/ │ │ │ ├── index.html.erb │ │ │ ├── test_a.html.erb │ │ │ └── test_b.html.erb │ │ ├── config/ │ │ │ ├── boot.rb │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments/ │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── initializers/ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── cookie_verification_secret.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── new_rails_defaults.rb │ │ │ │ └── session_store.rb │ │ │ ├── locales/ │ │ │ │ └── en.yml │ │ │ └── routes.rb │ │ ├── db/ │ │ │ ├── development.sqlite3 │ │ │ └── seeds.rb │ │ ├── doc/ │ │ │ └── README_FOR_APP │ │ ├── public/ │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── javascripts/ │ │ │ │ ├── application.js │ │ │ │ ├── controls.js │ │ │ │ ├── dragdrop.js │ │ │ │ ├── effects.js │ │ │ │ └── prototype.js │ │ │ └── robots.txt │ │ ├── script/ │ │ │ ├── about │ │ │ ├── console │ │ │ ├── dbconsole │ │ │ ├── destroy │ │ │ ├── generate │ │ │ ├── performance/ │ │ │ │ ├── benchmarker │ │ │ │ └── profiler │ │ │ ├── plugin │ │ │ ├── runner │ │ │ └── server │ │ └── test/ │ │ ├── performance/ │ │ │ └── browsing_test.rb │ │ └── test_helper.rb │ ├── rails3/ │ │ ├── Gemfile │ │ ├── README │ │ ├── Rakefile │ │ ├── app/ │ │ │ ├── controllers/ │ │ │ │ ├── application_controller.rb │ │ │ │ └── page_controller.rb │ │ │ ├── helpers/ │ │ │ │ ├── application_helper.rb │ │ │ │ └── page_helper.rb │ │ │ └── views/ │ │ │ ├── layouts/ │ │ │ │ └── application.html.erb │ │ │ └── page/ │ │ │ ├── index.html.erb │ │ │ ├── test_a.html.erb │ │ │ └── test_b.html.erb │ │ ├── config/ │ │ │ ├── analytical.yml │ │ │ ├── application.rb │ │ │ ├── boot.rb │ │ │ ├── database.yml │ │ │ ├── environment.rb │ │ │ ├── environments/ │ │ │ │ ├── development.rb │ │ │ │ ├── production.rb │ │ │ │ └── test.rb │ │ │ ├── initializers/ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ ├── inflections.rb │ │ │ │ ├── mime_types.rb │ │ │ │ ├── secret_token.rb │ │ │ │ └── session_store.rb │ │ │ ├── locales/ │ │ │ │ └── en.yml │ │ │ └── routes.rb │ │ ├── config.ru │ │ ├── db/ │ │ │ ├── development.sqlite3 │ │ │ ├── production.sqlite3 │ │ │ └── seeds.rb │ │ ├── doc/ │ │ │ └── README_FOR_APP │ │ ├── lib/ │ │ │ └── tasks/ │ │ │ └── .gitkeep │ │ ├── public/ │ │ │ ├── 404.html │ │ │ ├── 422.html │ │ │ ├── 500.html │ │ │ ├── javascripts/ │ │ │ │ ├── application.js │ │ │ │ ├── controls.js │ │ │ │ ├── dragdrop.js │ │ │ │ ├── effects.js │ │ │ │ ├── prototype.js │ │ │ │ └── rails.js │ │ │ ├── robots.txt │ │ │ └── stylesheets/ │ │ │ └── .gitkeep │ │ ├── script/ │ │ │ └── rails │ │ ├── test/ │ │ │ ├── functional/ │ │ │ │ └── page_controller_test.rb │ │ │ ├── performance/ │ │ │ │ └── browsing_test.rb │ │ │ ├── test_helper.rb │ │ │ └── unit/ │ │ │ └── helpers/ │ │ │ └── page_helper_test.rb │ │ └── vendor/ │ │ └── plugins/ │ │ └── .gitkeep │ └── rails3.1/ │ ├── Gemfile │ ├── README │ ├── Rakefile │ ├── app/ │ │ ├── assets/ │ │ │ ├── javascripts/ │ │ │ │ └── application.js │ │ │ └── stylesheets/ │ │ │ └── application.css │ │ ├── controllers/ │ │ │ ├── application_controller.rb │ │ │ └── page_controller.rb │ │ ├── helpers/ │ │ │ └── application_helper.rb │ │ ├── mailers/ │ │ │ └── .gitkeep │ │ ├── models/ │ │ │ └── .gitkeep │ │ └── views/ │ │ ├── layouts/ │ │ │ └── application.html.erb │ │ └── page/ │ │ ├── index.html.erb │ │ ├── test_a.html.erb │ │ └── test_b.html.erb │ ├── config/ │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments/ │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers/ │ │ │ ├── backtrace_silencers.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── secret_token.rb │ │ │ ├── session_store.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales/ │ │ │ └── en.yml │ │ └── routes.rb │ ├── config.ru │ ├── db/ │ │ ├── development.sqlite3 │ │ └── seeds.rb │ ├── doc/ │ │ └── README_FOR_APP │ ├── lib/ │ │ ├── assets/ │ │ │ └── .gitkeep │ │ └── tasks/ │ │ └── .gitkeep │ ├── public/ │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── robots.txt │ ├── script/ │ │ └── rails │ ├── test/ │ │ ├── fixtures/ │ │ │ └── .gitkeep │ │ ├── functional/ │ │ │ └── .gitkeep │ │ ├── integration/ │ │ │ └── .gitkeep │ │ ├── performance/ │ │ │ └── browsing_test.rb │ │ ├── test_helper.rb │ │ └── unit/ │ │ └── .gitkeep │ └── vendor/ │ ├── assets/ │ │ └── stylesheets/ │ │ └── .gitkeep │ └── plugins/ │ └── .gitkeep ├── lib/ │ ├── analytical/ │ │ ├── api.rb │ │ ├── bot_detector.rb │ │ ├── command_store.rb │ │ ├── modules/ │ │ │ ├── adroll.rb │ │ │ ├── adwords.rb │ │ │ ├── base.rb │ │ │ ├── chartbeat.rb │ │ │ ├── click_tale.rb │ │ │ ├── clicky.rb │ │ │ ├── comscore.rb │ │ │ ├── console.rb │ │ │ ├── crazy_egg.rb │ │ │ ├── gauges.rb │ │ │ ├── google.rb │ │ │ ├── google_optimizer.rb │ │ │ ├── google_universal.rb │ │ │ ├── hubspot.rb │ │ │ ├── kiss_metrics.rb │ │ │ ├── loopfuse.rb │ │ │ ├── microsoft_ads.rb │ │ │ ├── mixpanel.rb │ │ │ ├── mouseflow.rb │ │ │ ├── optimizely.rb │ │ │ ├── performancing.rb │ │ │ ├── quantcast.rb │ │ │ ├── reinvigorate.rb │ │ │ └── segment_io.rb │ │ ├── rails/ │ │ │ └── engine.rb │ │ └── session_command_store.rb │ └── analytical.rb ├── rails/ │ └── init.rb └── spec/ ├── analytical/ │ ├── api_spec.rb │ ├── bot_detector_spec.rb │ ├── command_store_spec.rb │ ├── modules/ │ │ ├── adroll_spec.rb │ │ ├── adwords_spec.rb │ │ ├── base_spec.rb │ │ ├── chartbeat_spec.rb │ │ ├── clicky_spec.rb │ │ ├── comscore_spec.rb │ │ ├── gauges_spec.rb │ │ ├── google_spec.rb │ │ ├── google_universal_spec.rb │ │ ├── kiss_metrics_spec.rb │ │ ├── mixpanel_spec.rb │ │ ├── optimizely_spec.rb │ │ ├── quantcast.rb │ │ ├── reinvigorate_spec.rb │ │ └── segment_io_spec.rb │ └── session_command_store_spec.rb ├── analytical_spec.rb ├── config/ │ └── analytical.yml ├── spec.opts └── spec_helper.rb