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: caace905606e0421dddde4e2092959bc15679b45d4fd6f71202aca8ac9b22cca
4
- data.tar.gz: d0076132f422409dbfc7754d68cfc5d1dd72165429ce1ee2c5cbf7e6a7aa78e6
3
+ metadata.gz: 37474ca0bd9f64c6406eec5f01194d820551f5d0c4c683c5e772fdcf767bd4e8
4
+ data.tar.gz: fceb4a330c37ccb986a3ba4079461772065e0b301deae565d4dbbfd7679ec34c
5
5
  SHA512:
6
- metadata.gz: 30d1a926a99a01a2610f0f87a7eaf6881693fd1bb0f449d795e3ba147e88e3bbab335aa47a0efc981eaec818e7820cc81a74d1bb21888c25bf656f01b4604cc7
7
- data.tar.gz: b4f85d2275a4b1823411f9d592f5d5c2acf13b47d137b34e9f15733114cda5280c79d243a5deaa89994b7a5cdcf5cf4fafcf40e9a01e276094257e7c2e26c233
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
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spree
4
- VERSION = "3.3.2"
4
+ VERSION = "3.3.3"
5
5
 
6
6
  def self.solidus_version
7
7
  VERSION
@@ -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.2
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-04-27 00:00:00.000000000 Z
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.4.6
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: []