module Rubyst

Rubyst

Constants

MAJOR

x.0.0 changes that will break existing users code if they update

MINOR

0.x.0 changes, such as new functionality/features

PATCH

0.0.x changes, such as small bug fixes

VERSION

Version

Public Class Methods

run() click to toggle source
# File lib/rubyst.rb, line 5
def self.run
  puts 'Run [rubocop]:'
  rubocop = `rubocop`
  if rubocop.lines("\n").length <= 4
    puts 'Okay all'
  else
    puts rubocop
  end
end