ahoy_matey 5.0.1 → 5.0.2
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/CHANGELOG.md +4 -0
- data/README.md +3 -1
- data/lib/ahoy/base_store.rb +3 -1
- data/lib/ahoy/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2da2e05c42ba50652c0fc6aada9a25bbaada8746a6802a7585790a751a2d9f4
|
|
4
|
+
data.tar.gz: 6ad4e393177de9f357957259082e0960ad8ea07e51d2c75e1b07826955a01456
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbfcb708d2a2343b51f0eb9b20de751f9802695445049d09f15a09ee214151ac4b20705d4f7369d12cdf254018a3b5f3c3271ebdfef5fc2516c52ecd457f5203
|
|
7
|
+
data.tar.gz: 135303f5c3c1f04a0e08b38859f4ed67e0d530e83908c1d1e83af7d012c6c68dabd810a2800bec9e32249ea5605a3405a66969ebb55d8cd56eba0a66d7b55af9
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
Track visits and events in Ruby, JavaScript, and native apps. Data is stored in your database by default, and you can customize it for any data store as you grow.
|
|
6
6
|
|
|
7
|
+
**Ahoy 5.0 was recently released** - see [how to upgrade](#upgrading)
|
|
8
|
+
|
|
7
9
|
:postbox: Check out [Ahoy Email](https://github.com/ankane/ahoy_email) for emails and [Field Test](https://github.com/ankane/field_test) for A/B testing
|
|
8
10
|
|
|
9
11
|
:tangerine: Battle-tested at [Instacart](https://www.instacart.com/opensource)
|
|
@@ -488,7 +490,7 @@ Ahoy can switch from cookies to [anonymity sets](https://privacypatterns.org/pat
|
|
|
488
490
|
Ahoy.cookies = :none
|
|
489
491
|
```
|
|
490
492
|
|
|
491
|
-
Note: If Ahoy was installed before v5, [add an index](#
|
|
493
|
+
Note: If Ahoy was installed before v5, [add an index](#50) before making this change.
|
|
492
494
|
|
|
493
495
|
Previously set cookies are automatically deleted. If you use JavaScript tracking, also set:
|
|
494
496
|
|
data/lib/ahoy/base_store.rb
CHANGED
|
@@ -37,7 +37,9 @@ module Ahoy
|
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
def exclude?
|
|
40
|
-
(!Ahoy.track_bots && bot?) ||
|
|
40
|
+
(!Ahoy.track_bots && bot?) ||
|
|
41
|
+
exclude_by_method? ||
|
|
42
|
+
(defined?(Rails::HealthController) && controller.is_a?(Rails::HealthController))
|
|
41
43
|
end
|
|
42
44
|
|
|
43
45
|
def generate_id
|
data/lib/ahoy/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ahoy_matey
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.0.
|
|
4
|
+
version: 5.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andrew Kane
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-10-
|
|
11
|
+
date: 2023-10-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|