solidus_core 3.3.2 → 3.3.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37474ca0bd9f64c6406eec5f01194d820551f5d0c4c683c5e772fdcf767bd4e8
|
4
|
+
data.tar.gz: fceb4a330c37ccb986a3ba4079461772065e0b301deae565d4dbbfd7679ec34c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8a9ff14b85d5d84cc59653a962da56241c91ca872de1c171e803081235503ca0275915908f013eaa4f144f5eebf4eab4a53dfd527b4a95982f35cc07e0999a7
|
7
|
+
data.tar.gz: fa0d9f73641d28cb08699b802c8c921a3348c033e9835011834ecac3c0caa31d3ca551d5f4d6b7c32a82005b21b62a52cee86132e624ba7792d8ba11ee020766
|
@@ -98,7 +98,7 @@ module Solidus
|
|
98
98
|
rake 'active_storage:install'
|
99
99
|
else
|
100
100
|
say_status :assets, "Paperclip", :green
|
101
|
-
gsub_file 'config/initializers/spree.rb', "ActiveStorageAttachment", "PaperclipAttachment"
|
101
|
+
gsub_file 'config/initializers/spree.rb', "::ActiveStorageAttachment", "::PaperclipAttachment"
|
102
102
|
end
|
103
103
|
end
|
104
104
|
|
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.3.
|
4
|
+
version: 3.3.3
|
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
|
@@ -1034,8 +1034,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1034
1034
|
- !ruby/object:Gem::Version
|
1035
1035
|
version: 1.8.23
|
1036
1036
|
requirements: []
|
1037
|
-
rubygems_version: 3.
|
1038
|
-
signing_key:
|
1037
|
+
rubygems_version: 3.3.7
|
1038
|
+
signing_key:
|
1039
1039
|
specification_version: 4
|
1040
1040
|
summary: Essential models, mailers, and classes for the Solidus e-commerce project.
|
1041
1041
|
test_files: []
|