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: a008072c9c416bc367e4952deb03036e422368fc98a1da10e0e6921a59f45a09
4
- data.tar.gz: a7a1999f79b95ba4007280e36be378dd2c6e00885f0254db8b9a3dfbc2e67dbd
3
+ metadata.gz: b7d96e47185fde90018c34a5a1267acb3e639ddaf06398509c32b565b189ce8d
4
+ data.tar.gz: a40c931ea84f21b93b413b65ff89f2502ad83315f168b7fe056cbbb3711e9bad
5
5
  SHA512:
6
- metadata.gz: 3ad8d068d845fbe22c00a3cafbbcc2cd4459934e4b2ba7790c394cb1c69e4858c1f58eb25ef76b5e0b77e3c71597ce1d1ac6f2caa8173a62b83f8b51f644226b
7
- data.tar.gz: 256cc8d412ca06ea8cb71f522d4935fa212076e17a240deb03e075aa2ec8da37ea6d602dc6bd536d5a6f6b029e9c249757efdb185ac5394fb16d0f4b61ba1e7f
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
@@ -1,3 +1,3 @@
1
1
  module ActiveAnalytics
2
- VERSION = '0.4.0'
2
+ VERSION = '0.4.1'
3
3
  end
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.0
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-06 00:00:00.000000000 Z
12
+ date: 2025-03-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails