Skip to content

Commit 0ac741d

Browse files
authored
Merge pull request #384 from DigitalNZ/tw/ruby-upgrade
Upgrade RUBY on supplejack_api
2 parents fd14972 + 9af1a35 commit 0ac741d

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.4.4

Gemfile.lock

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ GEM
154154
addressable (2.8.7)
155155
public_suffix (>= 2.0.2, < 7.0)
156156
ast (2.4.2)
157-
base64 (0.2.0)
157+
base64 (0.3.0)
158158
bcp47_spec (0.2.1)
159159
bcrypt (3.1.20)
160160
benchmark (0.4.0)
@@ -302,7 +302,7 @@ GEM
302302
mutex_m (0.3.0)
303303
net-http (0.4.1)
304304
uri
305-
net-imap (0.5.6)
305+
net-imap (0.5.8)
306306
date
307307
net-protocol
308308
net-pop (0.1.2)
@@ -313,11 +313,11 @@ GEM
313313
net-protocol
314314
netrc (0.11.0)
315315
nio4r (2.7.4)
316-
nokogiri (1.18.4-arm64-darwin)
316+
nokogiri (1.18.8-arm64-darwin)
317317
racc (~> 1.4)
318-
nokogiri (1.18.4-x86_64-darwin)
318+
nokogiri (1.18.8-x86_64-darwin)
319319
racc (~> 1.4)
320-
nokogiri (1.18.4-x86_64-linux-gnu)
320+
nokogiri (1.18.8-x86_64-linux-gnu)
321321
racc (~> 1.4)
322322
optparse (0.5.0)
323323
orm_adapter (0.5.0)
@@ -346,8 +346,8 @@ GEM
346346
activesupport (>= 3.0.0)
347347
raabro (1.4.0)
348348
racc (1.8.1)
349-
rack (3.1.12)
350-
rack-session (2.1.0)
349+
rack (3.1.16)
350+
rack-session (2.1.1)
351351
base64 (>= 0.1.0)
352352
rack (>= 3.0.0)
353353
rack-test (2.2.0)
@@ -509,6 +509,7 @@ PLATFORMS
509509
arm64-darwin-23
510510
x86_64-darwin-22
511511
x86_64-darwin-23
512+
x86_64-darwin-24
512513
x86_64-linux
513514

514515
DEPENDENCIES

spec/models/supplejack_api/search_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ module SupplejackApi
156156
it 'should include the correct search sort' do
157157
search = RecordSearch.new(sort: 'random')
158158

159-
expect(search.search_builder.inspect.include?(':sort=>"random desc"')).to eq true
159+
expect(search.search_builder.inspect.include?('sort: "random desc"')).to eq true
160160
end
161161
end
162162

supplejack_api.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ $LOAD_PATH.push File.expand_path('lib', __dir__)
44

55
# Describe your gem and declare its dependencies:
66
Gem::Specification.new do |s|
7-
s.required_ruby_version = '>= 3.2.2'
7+
s.required_ruby_version = '>= 3.4.4'
88

99
s.name = 'supplejack_api'
1010
s.version = '1'

0 commit comments

Comments
 (0)