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

11
Gemfile
View File

@ -11,7 +11,12 @@ gem 'kramdown', '~> 2.4'
gem 'pandoc-ruby', '~> 2.1'
# Use rerun gem to auto-reload app
gem 'guard-rack'
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
group :development, :test do
# Use guard-rack gem to auto-reload app
gem 'guard-rack'
gem 'wdm', '>= 0.1.0' if Gem.win_platform?
# rubocop and extensions for code style
gem 'rubocop'
gem 'rubocop-sequel'
end