solidus_core 3.2.7 → 3.2.8
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/lib/spree/core/version.rb +1 -1
- data/lib/spree/migration_helpers.rb +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 24c57e293814e01b927d2e22cfefb39df816a51f72f4197caad5b8d71b96ac59
|
|
4
|
+
data.tar.gz: edfbfcd7b2ce7adaf9500fd0903b289836ee6fc0c0fdd9e0c6a300dddc1b5ab1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9dcf53b2b72e62b961d2054e1c04d36eb996224aa37529bca01e3cb607d28f041740535986f05d878f6151b77d0dfea356ddcda5823ef40912606c538b5b9d5f
|
|
7
|
+
data.tar.gz: a9f9a4e588f0564e2b48acd0367018605ecd59c5826f29500c64ff9b1086cd8dda442adfda5cb4decf7f6a75bdadc4099c41fc13d1a99d791e3df438d5950e02
|
data/lib/spree/core/version.rb
CHANGED
|
@@ -6,9 +6,9 @@ module Spree
|
|
|
6
6
|
remove_index(table, column) if index_exists?(table, column)
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
def safe_add_index(table, column, options
|
|
10
|
-
if columns_exist?(table, column) && !index_exists?(table, column, options)
|
|
11
|
-
add_index(table, column, options)
|
|
9
|
+
def safe_add_index(table, column, **options)
|
|
10
|
+
if columns_exist?(table, column) && !index_exists?(table, column, **options)
|
|
11
|
+
add_index(table, column, **options)
|
|
12
12
|
end
|
|
13
13
|
end
|
|
14
14
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.2.
|
|
4
|
+
version: 3.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Solidus Team
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionmailer
|
|
@@ -1023,8 +1023,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1023
1023
|
- !ruby/object:Gem::Version
|
|
1024
1024
|
version: 1.8.23
|
|
1025
1025
|
requirements: []
|
|
1026
|
-
rubygems_version: 3.
|
|
1027
|
-
signing_key:
|
|
1026
|
+
rubygems_version: 3.3.7
|
|
1027
|
+
signing_key:
|
|
1028
1028
|
specification_version: 4
|
|
1029
1029
|
summary: Essential models, mailers, and classes for the Solidus e-commerce project.
|
|
1030
1030
|
test_files: []
|