Added rubocop to project and started cleaning up some code style issues

This commit is contained in:
2023-03-10 12:10:44 -05:00
parent a48ab93b08
commit 85750b4de4
6 changed files with 86 additions and 34 deletions

View File

@ -23,3 +23,9 @@ namespace :server do
%x{guard}
end
end
namespace :test do
task :rubocop do
system("rubocop app/ server.rb scan.rb")
end
end