Commit db6cddae58e907033bb89cb6a8ebe0c97d0da3f1

Authored by Samson Rollo Jr
1 parent a47513fb

Test3

1 repos: 1 repos:
2 -- repo: https://github.com/rubocop/rubocop  
3 - rev: v1.8.3 2 +- repo: local
4 hooks: 3 hooks:
5 - - id: rubocop  
  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']
@@ -34,7 +34,7 @@ end @@ -34,7 +34,7 @@ end
34 34
35 group :development do 35 group :development do
36 gem 'listen', '~> 3.3' 36 gem 'listen', '~> 3.3'
37 - gem 'rubocop', '~> 1.18.3', require: false 37 + gem 'rubocop', '~> 1.18.4', require: false
38 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 38 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
39 gem 'spring' 39 gem 'spring'
40 end 40 end
@@ -171,7 +171,7 @@ DEPENDENCIES @@ -171,7 +171,7 @@ DEPENDENCIES
171 mysql2 (~> 0.5) 171 mysql2 (~> 0.5)
172 puma (~> 5.0) 172 puma (~> 5.0)
173 rails (~> 6.1.4) 173 rails (~> 6.1.4)
174 - rubocop (~> 1.18.3) 174 + rubocop (~> 1.18.4)
175 spring 175 spring
176 tzinfo-data 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