Skip to content

Commit

Permalink
fix lint warnings: sort gems alphebetically
Browse files Browse the repository at this point in the history
  • Loading branch information
kidhab committed May 18, 2024
1 parent 5341851 commit b164d09
Showing 1 changed file with 21 additions and 23 deletions.
44 changes: 21 additions & 23 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,54 +3,52 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.2.2'

gem 'rails', '~> 7.1'
gem 'rails-i18n', '~> 7.0'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'importmap-rails', '~> 2.0'
gem 'sassc-rails'
gem 'jbuilder', '~> 2.7'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'puma', '~> 6.4'
gem 'rails', '~> 7.1'
gem 'rails-i18n', '~> 7.0'
gem 'sassc-rails'

group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]

Check failure on line 15 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/SymbolArray: Use `%i` or `%I` for an array of symbols.
end

group :development do
gem 'web-console', '>= 4.1.0'
gem 'rack-mini-profiler', '~> 3.3'
gem 'listen', '~> 3.9'
gem 'spring'
gem 'sqlite3', '~> 1.7'
gem 'rack-mini-profiler', '~> 3.3'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'spring'
gem 'sqlite3', '~> 1.7'
gem 'web-console', '>= 4.1.0'
end

group :test do
# Adds support for Capybara system testing and selenium driver
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'capybara', '>= 3.26'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'brakeman', require: false
gem 'bundler-audit', require: false
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem 'haml-rails', '~> 2.0'
gem 'base32'
gem 'bcrypt', '~> 3.1.20'
gem 'bootstrap', '~> 5.3.3'
gem 'haml-rails', '~> 2.0'
gem "hotwire-rails", "~> 0.1.3"

Check failure on line 42 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols.

Check failure on line 42 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols.
gem 'jquery-rails'
gem 'midi-smtp-server', '~> 3.2', require: false
gem 'mysql2', '>=0.5'
gem 'net-ftp'
gem 'roo'
gem 'roo-xls'
gem 'simple_form'
gem 'midi-smtp-server', '~> 3.2', require: false
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Check failure on line 51 in Gemfile

View workflow job for this annotation

GitHub Actions / lint

Style/SymbolArray: Use `%i` or `%I` for an array of symbols.
gem 'whenever', '~> 1.0', require: false
gem 'will_paginate', '~> 4.0'
gem 'will_paginate-bootstrap-style'
gem 'whenever', '~> 1.0', require: false
gem 'mysql2', '>=0.5'
gem 'base32'
gem 'net-ftp'
gem 'bootstrap', '~> 5.3.3'
gem 'jquery-rails'

gem "hotwire-rails", "~> 0.1.3"

0 comments on commit b164d09

Please sign in to comment.