Skip to content

Commit 9fd3bf6

Browse files
committed
Keep CI on Ruby 3.4 without Ruby 4
1 parent 5c43bd1 commit 9fd3bf6

3 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
- "3.2"
1414
- "3.3"
1515
- "3.4"
16-
- "4.0"
1716
steps:
1817
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1918
- name: Set up Ruby ${{ matrix.ruby }}

Gemfile.lock

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ PATH
33
specs:
44
app_profiler (0.5.0)
55
activesupport (>= 5.2)
6+
base64
7+
bigdecimal
8+
mutex_m
69
rack
710
stackprof (~> 0.2)
811

@@ -30,6 +33,8 @@ GEM
3033
addressable (2.8.0)
3134
public_suffix (>= 2.0.2, < 5.0)
3235
ast (2.4.2)
36+
base64 (0.3.0)
37+
bigdecimal (4.1.2)
3338
builder (3.2.4)
3439
concurrent-ruby (1.1.6)
3540
crass (1.0.6)
@@ -125,6 +130,7 @@ GEM
125130
mocha (1.11.2)
126131
multi_json (1.15.0)
127132
multipart-post (2.1.1)
133+
mutex_m (0.3.0)
128134
nokogiri (1.15.6)
129135
mini_portile2 (~> 2.8.2)
130136
racc (~> 1.4)

app_profiler.gemspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ Gem::Specification.new do |spec|
2727
spec.metadata["allowed_push_host"] = "https://rubygems.org"
2828

2929
spec.add_dependency("activesupport", ">= 5.2")
30+
spec.add_dependency("base64")
31+
spec.add_dependency("bigdecimal")
32+
spec.add_dependency("mutex_m")
3033
spec.add_dependency("rack")
3134
spec.add_dependency("stackprof", "~> 0.2")
3235

0 commit comments

Comments
 (0)