Commit db6cddae58e907033bb89cb6a8ebe0c97d0da3f1

Authored by Samson Rollo Jr
1 parent a47513fb

Test3

1 1 repos:
2   -- repo: https://github.com/rubocop/rubocop
3   - rev: v1.8.3
  2 +- repo: local
4 3 hooks:
5   - - id: rubocop
\ No newline at end of file
  4 + - id: rubocop
  5 + name: Check Ruby style with rubocop
  6 + description: Enforce Ruby style guide with rubocop and rubocop-rspec
  7 + entry: rubocop
  8 + language: ruby
  9 + types: ['ruby']
  10 + args: ['--auto-correct-all','--disable-uncorrectable', '--force-exclusion']
\ No newline at end of file
... ...
... ... @@ -34,7 +34,7 @@ end
34 34
35 35 group :development do
36 36 gem 'listen', '~> 3.3'
37   - gem 'rubocop', '~> 1.18.3', require: false
  37 + gem 'rubocop', '~> 1.18.4', require: false
38 38 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
39 39 gem 'spring'
40 40 end
... ...
... ... @@ -171,7 +171,7 @@ DEPENDENCIES
171 171 mysql2 (~> 0.5)
172 172 puma (~> 5.0)
173 173 rails (~> 6.1.4)
174   - rubocop (~> 1.18.3)
  174 + rubocop (~> 1.18.4)
175 175 spring
176 176 tzinfo-data
177 177
... ...
  1 +# frozen_string_literal: true
  2 +
  3 +class Test3Controller < ApplicationController
  4 +end
... ...
  1 +# frozen_string_literal: true
  2 +
  3 +require 'test_helper'
  4 +
  5 +class Test3ControllerTest < ActionDispatch::IntegrationTest
  6 + # test "the truth" do
  7 + # assert true
  8 + # end
  9 +end
... ...