hemju-google-analytics 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Rakefile CHANGED
@@ -7,7 +7,7 @@ require 'rake/testtask'
7
7
 
8
8
  spec = Gem::Specification.new do |s|
9
9
  s.name = 'hemju-google-analytics'
10
- s.version = '0.0.5'
10
+ s.version = '0.0.6'
11
11
  s.has_rdoc = true
12
12
  s.extra_rdoc_files = ['README', 'LICENSE']
13
13
  s.summary = "A gem that generates Google Analytics Javascript code."
@@ -1,12 +1,10 @@
1
- module Hemju
2
- module GoogleAnalytics
3
- class InstallGenerator < Rails::Generators::Base
4
- source_root File.expand_path("../templates", __FILE__)
1
+ module HemjuGoogleAnalytics
2
+ class InstallGenerator < Rails::Generators::Base
3
+ source_root File.expand_path("../templates", __FILE__)
5
4
 
6
- # all public methods in here will be run in order
7
- def add_my_initializer
8
- template "initializer.rb", "config/initializers/google_analytics_initializer.rb"
9
- end
5
+ # all public methods in here will be run in order
6
+ def add_my_initializer
7
+ template "initializer.rb", "config/initializers/google_analytics_initializer.rb"
10
8
  end
11
9
  end
12
10
  end
@@ -1,5 +1,5 @@
1
- <% if Hemju::GoogleAnalytics.environments.nil? || Hemju::GoogleAnalytics.environments.include?(Rails.env) %>
1
+ <% if HemjuGoogleAnalytics.environments.nil? || HemjuGoogleAnalytics.environments.include?(Rails.env) %>
2
2
  <script type="text/javascript">
3
- var _gaq = _gaq || [];_gaq.push(['_setAccount', Hemju::GoogleAnalytics.account]);_gaq.push(['_setDomainName', Hemju::GoogleAnalytics.domain]);_gaq.push(['_trackPageview']);(function() {var ga = document.createElement('script');ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';ga.setAttribute('async', 'true');document.documentElement.firstChild.appendChild(ga);})();
3
+ var _gaq = _gaq || [];_gaq.push(['_setAccount', HemjuGoogleAnalytics.account]);_gaq.push(['_setDomainName', HemjuGoogleAnalytics.domain]);_gaq.push(['_trackPageview']);(function() {var ga = document.createElement('script');ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';ga.setAttribute('async', 'true');document.documentElement.firstChild.appendChild(ga);})();
4
4
  </script>
5
5
  <% end -%>
@@ -1,4 +1,4 @@
1
- Hemju::GoogleAnalytics.setup do |config|
1
+ HemjuGoogleAnalytics.setup do |config|
2
2
 
3
3
  config.account = "'UA-xxxxxxx-x'"
4
4
  config.domain = ".your-domain"
@@ -1,5 +1,3 @@
1
- module Hemju
2
- module GoogleAnalytics
3
- VERSION = "0.0.5"
4
- end
1
+ module HemjuGoogleAnalytics
2
+ VERSION = "0.0.6"
5
3
  end
@@ -1,13 +1,11 @@
1
- module Hemju
2
- module GoogleAnalytics
3
- attr_accessor :account
4
- attr_accessor :domain
1
+ module HemjuGoogleAnalytics
2
+ attr_accessor :account
3
+ attr_accessor :domain
5
4
 
6
- attr_accessor :production_only
5
+ attr_accessor :production_only
7
6
 
8
- def self.setup
9
- yield self
10
- end
11
-
7
+ def self.setup
8
+ yield self
12
9
  end
10
+
13
11
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hemju-google-analytics
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
9
+ - 6
10
+ version: 0.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Helmut Michael Juskewycz