searchjoy 1.3.2 → 1.4.0

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: cae1538f158faa15c1daecc15876684dc82b87804fc5335912a08bee9bdb2957
4
- data.tar.gz: 3c9974b3449b534d3e69024d45f931408ecf1838e32aad432338dfb8d6de9a66
3
+ metadata.gz: 8cf724213575a2323c78822f1408257cfe241c8aedcac6332b63d33c498d8e0d
4
+ data.tar.gz: 1d341523ee3ce338b7ef2ed6d4760f6d5bfa3dab106caf42aab36758a291b03f
5
5
  SHA512:
6
- metadata.gz: 00be5588d518c8bb1ac5591df38d7f5eb020791ef7bf9327740b67862826da209750df018b5ab1292ff0175ce2315ec2a18eeab4d6a0d0c05dabbf073bd0f5a1
7
- data.tar.gz: 98a77ddaaa09957f77a786dbb2be7a6a89582613856ea09399c32e89a7987f6c2df0d09e771f5f3d9f044341c5af68b3102e4b14b0e9739dbd22cce6ba84ea7f
6
+ metadata.gz: 18e7a9446163b517b1b1a53be70ef441e886dd6224fedc875dbd963136185e1255c4795712d00ed3d292c4ee827adc69ef6ac4f2cf68fffc8ebcbbf021f6bcf2
7
+ data.tar.gz: d681037228730ca9b774792c627b754d45477f1fee9f7e2cf906af17fd8a939f2a19b1324543af13796b444a588087df80d46012c4582ae791a61fd03b624671
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.4.0 (2025-04-03)
2
+
3
+ - Dropped support for Ruby < 3.2 and Rails < 7.1
4
+
1
5
  ## 1.3.2 (2024-11-21)
2
6
 
3
7
  - Fixed date range picker for time zones with negative UTC offset
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013-2024 Andrew Kane
1
+ Copyright (c) 2013-2025 Andrew Kane
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -4,7 +4,7 @@ Search analytics made easy
4
4
 
5
5
  [See it in action](https://searchjoy.dokkuapp.com/)
6
6
 
7
- [![Screenshot](https://searchjoy.dokkuapp.com/assets/searchjoy-7be12d922ca8b31b7d7440e618b0c666698a4b15752653a0c5c45e3dd2737142.png)](https://searchjoy.dokkuapp.com/)
7
+ [![Screenshot](https://searchjoy.dokkuapp.com/assets/searchjoy-d0162561.png)](https://searchjoy.dokkuapp.com/)
8
8
 
9
9
  - view searches in real-time
10
10
  - track conversion rate week over week
@@ -178,42 +178,6 @@ Show the conversion name in the live stream
178
178
  Searchjoy.conversion_name = ->(model) { model.name }
179
179
  ```
180
180
 
181
- ## Upgrading
182
-
183
- ### 1.0
184
-
185
- Searchjoy now supports multiple conversions per search :tada:
186
-
187
- Before updating the gem, create a migration with:
188
-
189
- ```ruby
190
- create_table :searchjoy_conversions do |t|
191
- t.references :search
192
- t.references :convertable, polymorphic: true, index: {name: "index_searchjoy_conversions_on_convertable"}
193
- t.datetime :created_at
194
- end
195
- ```
196
-
197
- Deploy and run the migration, then update the gem.
198
-
199
- You can optionally backfill the conversions table
200
-
201
- ```ruby
202
- Searchjoy.backfill_conversions
203
- ```
204
-
205
- And optionally remove `convertable` from searches
206
-
207
- ```ruby
208
- remove_reference :searchjoy_searches, :convertable, polymorphic: true
209
- ```
210
-
211
- You can stay with single conversions (and skip all the previous steps) by creating an initializer with:
212
-
213
- ```ruby
214
- Searchjoy.multiple_conversions = false
215
- ```
216
-
217
181
  ## History
218
182
 
219
183
  View the [changelog](https://github.com/ankane/searchjoy/blob/master/CHANGELOG.md)
@@ -1,3 +1,3 @@
1
1
  module Searchjoy
2
- VERSION = "1.3.2"
2
+ VERSION = "1.4.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: searchjoy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-11-22 00:00:00.000000000 Z
10
+ date: 2025-04-03 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: chartkick
@@ -44,15 +43,14 @@ dependencies:
44
43
  requirements:
45
44
  - - ">="
46
45
  - !ruby/object:Gem::Version
47
- version: '6.1'
46
+ version: '7.1'
48
47
  type: :runtime
49
48
  prerelease: false
50
49
  version_requirements: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - ">="
53
52
  - !ruby/object:Gem::Version
54
- version: '6.1'
55
- description:
53
+ version: '7.1'
56
54
  email: andrew@ankane.org
57
55
  executables: []
58
56
  extensions: []
@@ -85,7 +83,6 @@ homepage: https://github.com/ankane/searchjoy
85
83
  licenses:
86
84
  - MIT
87
85
  metadata: {}
88
- post_install_message:
89
86
  rdoc_options: []
90
87
  require_paths:
91
88
  - lib
@@ -93,15 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
93
90
  requirements:
94
91
  - - ">="
95
92
  - !ruby/object:Gem::Version
96
- version: '3.1'
93
+ version: '3.2'
97
94
  required_rubygems_version: !ruby/object:Gem::Requirement
98
95
  requirements:
99
96
  - - ">="
100
97
  - !ruby/object:Gem::Version
101
98
  version: '0'
102
99
  requirements: []
103
- rubygems_version: 3.5.22
104
- signing_key:
100
+ rubygems_version: 3.6.2
105
101
  specification_version: 4
106
102
  summary: Search analytics made easy
107
103
  test_files: []