shopify-money 3.0.2 → 3.0.3

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: 88d3d9c1cc98d11dc60796b2cff513e008c901d5843708d5bf7112c037d29a45
4
- data.tar.gz: 36c3d1f38cc67f6974eafdf38ff585b4e80dec32ca3c50127eab285d5df00371
3
+ metadata.gz: 1395b621839646adc7561da3b65bdb3ca4fcd13a972be703acec64a9a08daa47
4
+ data.tar.gz: 6dfc464f1c15c8eb06734cc988c7d4843d88670fca3d8889307c0b0caffa309e
5
5
  SHA512:
6
- metadata.gz: a1b9c1935d7d31da18b16466fdeeab8cebab881dbc4fcfc5a4a246e08eaa63393aaa0ba8aea8616ac0d48daa44f13b5831067697a8450ba5e687a16d933a1608
7
- data.tar.gz: 4926c01ec81645f58ea2565702bc7b965882a611a7f1dc09ced72811abb36051d3e9b031556abac53ff3d71a39434611a8f1c4bf6a58d521f0c4fded307578e2
6
+ metadata.gz: 6fe1e1d79cd6f9f64b1c3beb0899b44eda823af1360f774caec6c10df22baedf63fa60ee46a1bb551940305ab9a69f737304074c5aa8bd2ab7f67fe72275b657
7
+ data.tar.gz: a42890315f7a76a5bcdd24207262619704876e0c9dba2526919f05fd16a1b1f1f53048df2871474cb0c7fae1cc6b542b453c7bbff61c78d428fa4af2bc3b6de4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shopify-money (3.0.2)
4
+ shopify-money (3.0.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -104,8 +104,9 @@ GEM
104
104
  irb (1.14.1)
105
105
  rdoc (>= 4.0.0)
106
106
  reline (>= 0.4.2)
107
- json (2.7.2)
108
- language_server-protocol (3.17.0.3)
107
+ json (2.10.2)
108
+ language_server-protocol (3.17.0.4)
109
+ lint_roller (1.1.0)
109
110
  logger (1.6.1)
110
111
  loofah (2.24.0)
111
112
  crass (~> 1.0.2)
@@ -144,7 +145,7 @@ GEM
144
145
  nokogiri (1.18.3-x86_64-linux-gnu)
145
146
  racc (~> 1.4)
146
147
  parallel (1.26.3)
147
- parser (3.3.5.0)
148
+ parser (3.3.7.1)
148
149
  ast (~> 2.4.1)
149
150
  racc
150
151
  pry (0.14.2)
@@ -197,7 +198,7 @@ GEM
197
198
  rake (13.2.1)
198
199
  rdoc (6.7.0)
199
200
  psych (>= 4.0.0)
200
- regexp_parser (2.9.2)
201
+ regexp_parser (2.10.0)
201
202
  reline (0.5.10)
202
203
  io-console (~> 0.5)
203
204
  rspec (3.13.0)
@@ -213,17 +214,18 @@ GEM
213
214
  diff-lcs (>= 1.2.0, < 2.0)
214
215
  rspec-support (~> 3.13.0)
215
216
  rspec-support (3.13.1)
216
- rubocop (1.67.0)
217
+ rubocop (1.74.0)
217
218
  json (~> 2.3)
218
- language_server-protocol (>= 3.17.0)
219
+ language_server-protocol (~> 3.17.0.2)
220
+ lint_roller (~> 1.1.0)
219
221
  parallel (~> 1.10)
220
222
  parser (>= 3.3.0.2)
221
223
  rainbow (>= 2.2.2, < 4.0)
222
- regexp_parser (>= 2.4, < 3.0)
223
- rubocop-ast (>= 1.32.2, < 2.0)
224
+ regexp_parser (>= 2.9.3, < 3.0)
225
+ rubocop-ast (>= 1.38.0, < 2.0)
224
226
  ruby-progressbar (~> 1.7)
225
- unicode-display_width (>= 2.4.0, < 3.0)
226
- rubocop-ast (1.32.3)
227
+ unicode-display_width (>= 2.4.0, < 4.0)
228
+ rubocop-ast (1.39.0)
227
229
  parser (>= 3.3.1.0)
228
230
  rubocop-performance (1.22.1)
229
231
  rubocop (>= 1.48.1, < 2.0)
@@ -249,7 +251,9 @@ GEM
249
251
  timeout (0.4.1)
250
252
  tzinfo (2.0.6)
251
253
  concurrent-ruby (~> 1.0)
252
- unicode-display_width (2.6.0)
254
+ unicode-display_width (3.1.4)
255
+ unicode-emoji (~> 4.0, >= 4.0.4)
256
+ unicode-emoji (4.0.4)
253
257
  useragent (0.16.10)
254
258
  webrick (1.8.2)
255
259
  websocket-driver (0.7.6)
@@ -2,7 +2,7 @@
2
2
 
3
3
  Money.class_eval do
4
4
  ACTIVE_SUPPORT_DEFINED = defined?(ActiveSupport)
5
- DEPRECATION_STACKTRACE_LENGTH = 5
5
+ DEPRECATION_STACKTRACE_LENGTH = 20
6
6
 
7
7
  def self.active_support_deprecator
8
8
  @active_support_deprecator ||= begin
data/lib/money/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Money
4
- VERSION = "3.0.2"
4
+ VERSION = "3.0.3"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify-money
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify Inc
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-02-27 00:00:00.000000000 Z
10
+ date: 2025-03-24 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
188
188
  - !ruby/object:Gem::Version
189
189
  version: '0'
190
190
  requirements: []
191
- rubygems_version: 3.6.3
191
+ rubygems_version: 3.6.6
192
192
  specification_version: 4
193
193
  summary: Shopify's money gem
194
194
  test_files: []