Skip to content

Commit 09905de

Browse files
chore(github_hooks): upgrade rails version (#506)
## πŸ“ Description Upgrade of rails version ## βœ… Checklist - [ ] I have tested this change - [ ] This change requires documentation update
1 parent 3257f06 commit 09905de

File tree

17 files changed

+243
-221
lines changed

17 files changed

+243
-221
lines changed

β€Žgithub_hooks/.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
inherit_from: .rubocop_todo.yml
22

3-
require:
3+
plugins:
44
- rubocop-rails
55
- rubocop-factory_bot
66
- rubocop-rspec

β€Žgithub_hooks/.rubocop_todo.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,12 @@ RSpec/ExpectInHook:
540540
# Offense count: 2
541541
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
542542
# Include: **/*_spec*rb*, **/spec/**/*
543-
RSpec/FilePath:
543+
RSpec/SpecFilePathFormat:
544+
Exclude:
545+
- 'spec/lib/repo_host/repository/hook_spec.rb'
546+
- 'spec/lib/repo_host/repository_spec.rb'
547+
548+
RSpec/SpecFilePathSuffix:
544549
Exclude:
545550
- 'spec/lib/repo_host/repository/hook_spec.rb'
546551
- 'spec/lib/repo_host/repository_spec.rb'

β€Žgithub_hooks/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}.git" }
44
gem "bundler", ">= 1.8.4"
55

66
gem "pg", "~> 1.1"
7-
gem "rails", "~> 8.0.0"
7+
gem "rails", ">= 8.0.2.1", "< 8.1"
88
gem "sprockets-rails"
99

1010
gem "excon", "~> 0.81.0"

0 commit comments

Comments
Β (0)