active_analytics 0.4.0 → 0.4.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7d96e47185fde90018c34a5a1267acb3e639ddaf06398509c32b565b189ce8d
|
4
|
+
data.tar.gz: a40c931ea84f21b93b413b65ff89f2502ad83315f168b7fe056cbbb3711e9bad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08983449da423c0f2fe27de34cab8107d911fec269fb9b3cc04d5c637eef26220c4340e621070f2e91eb4e99c440e16da3cfc4eb1d8c56a60d62d8e905e4195d'
|
7
|
+
data.tar.gz: a6523a4f856769ff12ab729fe944a168c14f3dc1701b0cb0c6b3615209a3af4b908c6a26f2afdfe44893f480297eca6295ab79c4e0d5ffb27052a872b12e92a1
|
data/README.md
CHANGED
@@ -16,6 +16,7 @@ Simple traffic analytics for the win of privacy.
|
|
16
16
|
* **Sources**: What are the pages and domains that bring some traffic.
|
17
17
|
* **Page views**: What are the pages that are the most viewed in your application.
|
18
18
|
* **Next/previous page**: What are the entry and exit pages for a given page of your application.
|
19
|
+
* **Browser statistics**: What browsers and which versions are visiting your site.
|
19
20
|
|
20
21
|
<img src="app/assets/images/active_analytics_screenshot.png" alt="active analytics logo" style="max-width: 100%; margin: 24px 0;" />
|
21
22
|
|
@@ -10,7 +10,8 @@ class CreateActiveAnalyticsViewsPerDays < ActiveRecord::Migration[5.2]
|
|
10
10
|
t.timestamps
|
11
11
|
end
|
12
12
|
add_index :active_analytics_views_per_days, [:date, :site, :page]
|
13
|
-
add_index :active_analytics_views_per_days, [:date, :site, :referrer_host, :referrer_path]
|
13
|
+
add_index :active_analytics_views_per_days, [:date, :site, :referrer_host, :referrer_path],
|
14
|
+
name: 'index_views_per_days_on_date_site_referrer_host_referrer_path'
|
14
15
|
end
|
15
16
|
|
16
17
|
def down
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_analytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexis Bernard
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2025-03-
|
12
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|