Skip to content

Commit 3f9140d

Browse files
authored
Merge pull request #18 from zendesk/ruby_3.4
Add tests with Ruby 3.4
2 parents e4e825f + f797b11 commit 3f9140d

File tree

7 files changed

+7
-23
lines changed

7 files changed

+7
-23
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- '3.1'
2424
- '3.2'
2525
- '3.3'
26+
- '3.4'
2627
gemfile:
2728
- 'resque_1'
2829
- 'resque_2'

Gemfile.lock

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,15 @@ GEM
88
remote: https://rubygems.org/
99
specs:
1010
ast (2.4.2)
11-
codecov (0.2.12)
12-
json
13-
simplecov
1411
coderay (1.1.3)
1512
docile (1.4.0)
1613
json (2.6.3)
1714
language_server-protocol (3.17.0.3)
1815
method_source (1.0.0)
19-
minitest (5.18.1)
16+
minitest (5.25.4)
2017
minitest-rg (5.2.0)
2118
minitest (~> 5.0)
22-
mocha (2.0.4)
19+
mocha (2.7.1)
2320
ruby2_keywords (>= 0.0.5)
2421
mono_logger (1.1.2)
2522
multi_json (1.15.0)
@@ -84,7 +81,6 @@ PLATFORMS
8481
ruby
8582

8683
DEPENDENCIES
87-
codecov
8884
minitest
8985
minitest-rg
9086
mocha

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Resque::Disable::Job
22

33
[![Build Status](https://travis-ci.org/zendesk/resque-disable-job.svg?branch=master)](https://travis-ci.org/zendesk/resque-disable-job)
4-
[![codecov](https://codecov.io/gh/zendesk/resque-disable-job/branch/master/graph/badge.svg)](https://codecov.io/gh/zendesk/resque-disable-job)
54

65

76
This is a Resque plugin that allows us to disable jobs from being processed, by using the job class name and arguments.

gemfiles/common.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
gemspec path: '../'
66

7-
gem 'codecov'
87
gem 'minitest'
98
gem 'minitest-rg'
109
gem 'mocha'

gemfiles/resque_1.gemfile.lock

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,15 @@ GEM
88
remote: https://rubygems.org/
99
specs:
1010
ast (2.4.2)
11-
codecov (0.2.12)
12-
json
13-
simplecov
1411
coderay (1.1.3)
1512
docile (1.4.0)
1613
json (2.6.3)
1714
language_server-protocol (3.17.0.3)
1815
method_source (1.0.0)
19-
minitest (5.18.1)
16+
minitest (5.25.4)
2017
minitest-rg (5.2.0)
2118
minitest (~> 5.0)
22-
mocha (2.0.4)
19+
mocha (2.7.1)
2320
ruby2_keywords (>= 0.0.5)
2421
mono_logger (1.1.2)
2522
multi_json (1.15.0)
@@ -84,7 +81,6 @@ PLATFORMS
8481
ruby
8582

8683
DEPENDENCIES
87-
codecov
8884
minitest
8985
minitest-rg
9086
mocha

gemfiles/resque_2.gemfile.lock

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,16 @@ GEM
88
remote: https://rubygems.org/
99
specs:
1010
ast (2.4.2)
11-
codecov (0.2.12)
12-
json
13-
simplecov
1411
coderay (1.1.3)
1512
connection_pool (2.4.1)
1613
docile (1.4.0)
1714
json (2.6.3)
1815
language_server-protocol (3.17.0.3)
1916
method_source (1.0.0)
20-
minitest (5.18.1)
17+
minitest (5.25.4)
2118
minitest-rg (5.2.0)
2219
minitest (~> 5.0)
23-
mocha (2.0.4)
20+
mocha (2.7.1)
2421
ruby2_keywords (>= 0.0.5)
2522
mono_logger (1.1.2)
2623
multi_json (1.15.0)
@@ -85,7 +82,6 @@ PLATFORMS
8582
ruby
8683

8784
DEPENDENCIES
88-
codecov
8985
minitest
9086
minitest-rg
9187
mocha

spec/spec_helper.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
add_filter '/spec/'
66
end
77

8-
require 'codecov'
9-
SimpleCov.formatter = SimpleCov::Formatter::Codecov
10-
118
require 'bundler/setup'
129
require 'resque'
1310
require 'resque-disable-job'

0 commit comments

Comments
 (0)