Sha256: c544fe2790b87e25c3ab90685fb25e47150c7728add7a2e6db900bf827fa0935
Contents?: true
Size: 887 Bytes
Versions: 1
Compression:
Stored size: 887 Bytes
Contents
module Analytics module Rails module ActionView module Base def google_analytics_include_tag(account) if ::Rails.env.production? script = <<-SCRIPT.strip_heredoc var _gaq = _gaq || []; _gaq.push(['_setAccount', '#{account}']); _gaq.push(['_trackPageview']); (function(){ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); SCRIPT content_tag(:script, "\n#{script}".html_safe, :type => 'text/javascript') end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
analytics-rails-0.0.3 | lib/analytics/rails/action_view/base.rb |