Skip to content

Commit 35f1745

Browse files
committed
Add logger dependency to fix 3.5.0 failure
1 parent 9cc6dd8 commit 35f1745

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
ruby-version: ["3.2.2", "3.3.9", "3.5.0-preview1"]
15+
ruby-version: ["3.2.2", "3.3.9", "3.4.0", "3.5.0-preview1"]
1616
experimental: [false]
1717
steps:
1818
- uses: actions/checkout@v5

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ group :development do
88
gem 'rubocop', install_if: -> { RUBY_VERSION >= '3.2' }
99
end
1010

11+
gem 'logger'
1112
gem 'rspec'
1213

1314
gemspec

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ GEM
1313
json (2.15.0)
1414
language_server-protocol (3.17.0.5)
1515
lint_roller (1.1.0)
16+
logger (1.7.0)
1617
parallel (1.27.0)
1718
parser (3.3.9.0)
1819
ast (~> 2.4.1)
@@ -64,6 +65,7 @@ PLATFORMS
6465
DEPENDENCIES
6566
bundler
6667
git-fastclone!
68+
logger
6769
rake
6870
rspec
6971
rubocop

spec/git_fastclone_runner_spec.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def create_lockfile_double
4545
it 'should initialize properly' do
4646
stub_const('GitFastClone::DEFAULT_REFERENCE_REPO_DIR', 'new_dir')
4747

48-
expect(Hash).to respond_to(:new).with(2).arguments
4948
expect(GitFastClone::DEFAULT_REFERENCE_REPO_DIR).to eq('new_dir')
5049
expect(subject.prefetch_submodules).to eq(true)
5150
expect(subject.reference_mutex).to eq({})

0 commit comments

Comments
 (0)