Skip to content

Commit a130651

Browse files
authored
Merge pull request #35 from jgraichen/chore/rubocop-config
chore: Update rubocop-config to v13
2 parents 5a97edc + fd5b819 commit a130651

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ group :development do
1313
gem 'benchmark-ips'
1414
gem 'pry'
1515
gem 'pry-byebug'
16-
gem 'rubocop-config', github: 'jgraichen/rubocop-config', ref: 'v12', require: false
16+
gem 'rubocop-config', github: 'jgraichen/rubocop-config', tag: 'v13', require: false
1717
end
1818

1919
group :test do

spec/dummy/config/application.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
require File.expand_path('../boot', __FILE__)
22

3+
# Workaround for missing require "logger" in some Rails versions.
4+
#
5+
# See https://github.com/rails/rails/pull/54264.
6+
require 'logger'
7+
38
require 'rails/all'
49

510
Bundler.require(*Rails.groups)
@@ -19,4 +24,3 @@ class Application < Rails::Application
1924
# config.i18n.default_locale = :de
2025
end
2126
end
22-

0 commit comments

Comments
 (0)