path-reporting 0.1.4 → 0.1.5
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/Gemfile.lock +1 -1
- data/lib/path/reporting/types/trigger.rb +1 -1
- data/lib/path/reporting/version.rb +1 -1
- data/lib/path/reporting.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9cf8b0c5159e89a7fde5da0bf0c2d4912f05f03d62fa5c66e2f5f48143916f36
|
|
4
|
+
data.tar.gz: ee8d74820b4f6c194813448700c0eb66c4d72b3b84d8431955c7a297c4db01f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0528361202c2f3750e68181a3203a63c43c7c731710f9bd03814da1416bd46861650337df5f56351b774e0226a4eebb83e9de13119303c6b76822e5f374747c6'
|
|
7
|
+
data.tar.gz: ecee15c13b20cbfbabdc9040212bd392ef28ceb8c24dd0cac7e4e7394c16f85f39e5a602543a30fe5b005ef90757c444bbe33480d5fdea3903d5b6260489a835
|
data/Gemfile.lock
CHANGED
data/lib/path/reporting.rb
CHANGED
|
@@ -52,7 +52,7 @@ module Path
|
|
|
52
52
|
def analytics
|
|
53
53
|
raise Error, "Must call init on Path::Reporting library before using" unless @initialized
|
|
54
54
|
|
|
55
|
-
@
|
|
55
|
+
@analytics
|
|
56
56
|
end
|
|
57
57
|
|
|
58
58
|
# Resets the module to an uninitialized state. Mostly used for testing
|
|
@@ -60,7 +60,7 @@ module Path
|
|
|
60
60
|
def reset!
|
|
61
61
|
@initialized = false
|
|
62
62
|
@config = nil
|
|
63
|
-
@
|
|
63
|
+
@analytics = nil
|
|
64
64
|
self
|
|
65
65
|
end
|
|
66
66
|
end
|