File tree Expand file tree Collapse file tree 4 files changed +11
-15
lines changed Expand file tree Collapse file tree 4 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 15
15
- name : Set up Ruby
16
16
uses : ruby/setup-ruby@v1
17
17
with :
18
- ruby-version : 3.2
18
+ ruby-version : 3.0
19
19
bundler-cache : true
20
20
rubygems : latest
21
21
29
29
grape : [ '~> 2.0.0', 'head' ]
30
30
grape_swagger : [ '~> 2.0.3', 'head' ]
31
31
grape_entity : [ '~> 1.0.1', 'head' ]
32
- ruby : [ '3.1 ', '3.4', 'head' ]
32
+ ruby : [ '3.0 ', '3.4', 'head' ]
33
33
# Exclude combinations that are not supported.
34
34
exclude :
35
35
- { grape_swagger: '~> 2.0.3', grape: 'head' }
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ AllCops:
3
3
Exclude :
4
4
- vendor/**/*
5
5
TargetRubyVersion :
6
- 2.7
6
+ 3.0
7
7
8
8
inherit_from : .rubocop_todo.yml
9
9
10
- require :
10
+ plugins :
11
11
- rubocop-rake
12
12
- rubocop-rspec
13
13
Original file line number Diff line number Diff line change 1
1
# This configuration was generated by
2
2
# `rubocop --auto-gen-config`
3
- # on 2025-05-12 21:32:47 UTC using RuboCop version 1.75.5 .
3
+ # on 2025-05-28 16:52:10 UTC using RuboCop version 1.75.8 .
4
4
# The point is for the user to remove these configuration records
5
5
# one by one as the offenses are removed from the code base.
6
6
# Note that changes in the inspected code, or installation of new
7
7
# versions of RuboCop, may require this file to be generated again.
8
8
9
- # Offense count: 1
10
- # Configuration parameters: Severity, Include.
11
- # Include: **/*.gemspec
12
- Gemspec/RequiredRubyVersion :
13
- Exclude :
14
- - ' grape-swagger-entity.gemspec'
15
-
16
9
# Offense count: 3
17
10
# Configuration parameters: AllowedMethods.
18
11
# AllowedMethods: enums
Original file line number Diff line number Diff line change @@ -34,9 +34,12 @@ group :development, :test do
34
34
gem 'rake'
35
35
gem 'rdoc'
36
36
gem 'rspec'
37
- gem 'rubocop'
38
- gem 'rubocop-rake'
39
- gem 'rubocop-rspec'
37
+ end
38
+
39
+ group :development do
40
+ gem 'rubocop' , '>= 1.72' , require : false
41
+ gem 'rubocop-rake' , '>= 0.7' , require : false
42
+ gem 'rubocop-rspec' , '>= 3.5.0' , require : false
40
43
end
41
44
42
45
group :test do
You can’t perform that action at this time.
0 commit comments