Skip to content

Commit ba88ef8

Browse files
authored
Better: Update parallel dependency version to '~> 2' and bump ruby requirement to 3.3.0 (#40)
1 parent da474a1 commit ba88ef8

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, 3.3, 3.4, 4.0, head]
13+
ruby: [3.3, 3.4, 4.0, head]
1414

1515
steps:
1616
- name: Checkout repository

Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ PATH
33
specs:
44
puma-status (1.7)
55
net_http_unix (~> 0.2)
6-
parallel (~> 1)
6+
parallel (~> 2)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
1111
climate_control (0.2.0)
1212
diff-lcs (1.5.0)
1313
net_http_unix (0.2.2)
14-
parallel (1.24.0)
14+
parallel (2.1.0)
1515
rspec (3.12.0)
1616
rspec-core (~> 3.12.0)
1717
rspec-expectations (~> 3.12.0)
@@ -37,4 +37,4 @@ DEPENDENCIES
3737
timecop (~> 0.9)
3838

3939
BUNDLED WITH
40-
2.3.5
40+
2.5.3

puma-status.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ Gem::Specification.new do |s|
66
s.summary = 'Command-line tool for puma to display information about running request/process'
77
s.license = "MIT"
88
s.homepage = 'https://github.com/ylecuyer/puma-status'
9-
s.required_ruby_version = '>=2.6.0'
9+
s.required_ruby_version = '>=3.3.0'
1010

1111
s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE)
1212
s.require_paths = ["lib"]
1313
s.executables = ['puma-status']
1414

1515
s.add_runtime_dependency "net_http_unix", '~> 0.2'
16-
s.add_runtime_dependency "parallel", '~> 1'
16+
s.add_runtime_dependency "parallel", '~> 2'
1717

1818
s.add_development_dependency "rspec", '~> 3.8'
1919
s.add_development_dependency "climate_control", '~> 0.2'

0 commit comments

Comments
 (0)