solidus_core 3.2.7 → 3.2.8

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: d2b38eb2401bb7f4cc38c7eadab97621ec03a74aab1083aaa838e7ac02a753f8
4
- data.tar.gz: b6d75fd4b66ded6bbc9edbba1b89ecfdc112310e8aa430e4402bc6d82a4d82ef
3
+ metadata.gz: 24c57e293814e01b927d2e22cfefb39df816a51f72f4197caad5b8d71b96ac59
4
+ data.tar.gz: edfbfcd7b2ce7adaf9500fd0903b289836ee6fc0c0fdd9e0c6a300dddc1b5ab1
5
5
  SHA512:
6
- metadata.gz: b383febf1f4b46763aca57b0cc491a66f9e5cd407579d302f9fdbf9421d9a61f9a6f0ab89c570c5a61bc444ab17a18e8b86ab3fe088a4ce4354cb3b0c22b1208
7
- data.tar.gz: 351d24867375e4b103d49ab1fa084acea266af23a883f0d83005e574ef5d6fa51d07d39f9a6fe507298ddb403d2db6982ed204651649e21c0f7c3ab76db81b0b
6
+ metadata.gz: 9dcf53b2b72e62b961d2054e1c04d36eb996224aa37529bca01e3cb607d28f041740535986f05d878f6151b77d0dfea356ddcda5823ef40912606c538b5b9d5f
7
+ data.tar.gz: a9f9a4e588f0564e2b48acd0367018605ecd59c5826f29500c64ff9b1086cd8dda442adfda5cb4decf7f6a75bdadc4099c41fc13d1a99d791e3df438d5950e02
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spree
4
- VERSION = "3.2.7"
4
+ VERSION = "3.2.8"
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.2.7
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-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
@@ -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.4.6
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: []