Sha256: 19821a5f13680378a61ed77e5beb064841c9d817e25007d682b0a325452792e0
Contents?: true
Size: 432 Bytes
Versions: 48
Compression:
Stored size: 432 Bytes
Contents
class HomeController < ApplicationController def index # badly formatted code that will be picked up by RuboCop # rubocop -A --config .rubocop.yml # will not resolve this issue, you need to manually fix it a = 1 person1 = 'John' person2 = 'Jane' person3 = 'Jack' person4 = 'Jill' people = [person1, person2, person3, person4] puts people if people.length > 0 end def some_action end end
Version data entries
48 entries across 48 versions & 1 rubygems