= sfanalytics SFanalytics provides Google Analytics for your app. Probably only really useful for Ecommerce users of analytics, to provide the functionality to add the order items to your transactions for tracking in Analytics. == Usage SFanalytics provides a set of helpers that provide the standard and ecommerce functionality of Google Analytics. A simple example of its usage is: <%- analytics_add_transaction( { :id => 'A01', :store_name => 'TEST STORE', :total => '3.54', :vat => '0.34', :postage => '2.20', :city => 'Test City', :county => 'Test County', :country => 'Test Kingdom' } ) analytics_add_item( { :sku => 'TEST123', :name => 'Test Item', :category => 'Test Categoru', :price => '1.99', :quantity => '2' } ) analytics_add_item( { :sku => 'TEST124', :name => 'Test Item3', :category => 'Test Categoru', :price => '1.99', :quantity => '3' } ) %> <%= analytics_generate('UA-1234566-1') %> This adds a transaction, then some line items to the transaction, then outputs the analytics code when analytics_generate is called. == Note on Patches/Pull Requests * Fork the project. * Make your feature addition or bug fix. * Add tests for it. This is important so I don't break it in a future version unintentionally. * Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull) * Send me a pull request. Bonus points for topic branches. == Copyright Copyright (c) 2010 Setfire Media. See LICENSE for details. http://www.setfiremedia.com