workarea-google_analytics 2.1.5 → 2.1.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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +15 -0
- data/Gemfile +1 -1
- data/Rakefile +4 -5
- data/app/assets/javascripts/workarea/storefront/google_analytics/modules/adapter.js +1 -1
- data/lib/workarea/google_analytics/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ca843aa749daf4ee89e4cc4584e0439f5928e1577d27c64ed72eba13f48caa5
|
|
4
|
+
data.tar.gz: 99ec473ad9acfd98becfed72f6af78495df7342f847b4b6340808fceebd4df90
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d10d98ad3456003e96aee4906b9e7fd4ba0b5a0da2bebc6912081adae4f8f31529dea145ea5d94ce71fdfb5436705aa48797771c85bf89428ab3c461b7975909
|
|
7
|
+
data.tar.gz: 1cec12e197be3021adb2c95c336f3079438886b50ee5aa83748868f20f826a674ad38d009f94396a54846f758b49524fce8fc4cd283314076b09944219b56a11
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
Workarea Google Analytics 2.1.6 (2020-02-04)
|
|
2
|
+
--------------------------------------------------------------------------------
|
|
3
|
+
|
|
4
|
+
* Don't Call Google Analytics Until It's Defined
|
|
5
|
+
|
|
6
|
+
Instead of seeing whether the app is in the test environment, check
|
|
7
|
+
whether the `ga()` function is present before sending any calls to it.
|
|
8
|
+
This prevents a JS error that occurs when the
|
|
9
|
+
`config.google_analytics_tracking_id` is missing.
|
|
10
|
+
|
|
11
|
+
GOOGLEANALYTICS-4
|
|
12
|
+
Tom Scott
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
1
16
|
Workarea Google Analytics 2.1.5 (2019-08-21)
|
|
2
17
|
--------------------------------------------------------------------------------
|
|
3
18
|
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
|
@@ -16,13 +16,12 @@ desc "Release version #{Workarea::GoogleAnalytics::VERSION} of the gem"
|
|
|
16
16
|
task :release do
|
|
17
17
|
host = "https://#{ENV['BUNDLE_GEMS__WEBLINC__COM']}@gems.weblinc.com"
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
#system 'git push origin HEAD'
|
|
19
|
+
Rake::Task['workarea:changelog'].execute
|
|
20
|
+
system 'git add CHANGELOG.md'
|
|
21
|
+
system 'git commit -m "Update CHANGELOG"'
|
|
23
22
|
|
|
24
23
|
system "git tag -a v#{Workarea::GoogleAnalytics::VERSION} -m 'Tagging #{Workarea::GoogleAnalytics::VERSION}'"
|
|
25
|
-
system 'git push --tags'
|
|
24
|
+
system 'git push origin HEAD --follow-tags'
|
|
26
25
|
|
|
27
26
|
system 'gem build workarea-google_analytics.gemspec'
|
|
28
27
|
system "gem push workarea-google_analytics-#{Workarea::GoogleAnalytics::VERSION}.gem"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: workarea-google_analytics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ben Crouse
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: workarea
|
|
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
|
-
rubygems_version: 3.0.
|
|
128
|
+
rubygems_version: 3.0.6
|
|
129
129
|
signing_key:
|
|
130
130
|
specification_version: 4
|
|
131
131
|
summary: Google Analytics integration for the Workarea Commerce Platform
|