Skip to content

Commit

Permalink
Code quality improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvarner committed Aug 28, 2024
1 parent 4aff410 commit e8920f6
Show file tree
Hide file tree
Showing 86 changed files with 677 additions and 666 deletions.
4 changes: 4 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
require:
- rubocop-rspec
- rubocop-rspec_rails
- rubocop-rails
- rubocop-factory_bot

AllCops:
NewCops: enable

Exclude:
- db/**/*
- bin/**/*
- app/services/google_import.rb

# Commonly used screens these days easily fit more than 80 characters.
Layout/LineLength:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2
3.3.4
43 changes: 0 additions & 43 deletions Capfile

This file was deleted.

19 changes: 8 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
source 'https://rubygems.org'
git_source(:github) {|_repo| "https://github.com/#{repo}.git" }

ruby '3.1.2'
ruby '3.3.4'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 7.0.2', '>= 7.0.2.3'
gem 'rails', '~> 7.2.1'

gem 'csv'

# Use postgresql as the database for Active Record
gem 'pg', '~> 1.1'
Expand Down Expand Up @@ -53,18 +55,13 @@ group :development, :test do
gem 'faker'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-factory_bot', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
gem 'shoulda-matchers'
end

group :development do
gem 'capistrano', '~> 3.10', require: false
gem 'capistrano-passenger', '~> 0.2.1', require: false
gem 'capistrano-rails', '~> 1.6', require: false
gem 'capistrano-rbenv', '~> 2.2', require: false
end

gem 'pundit', '~> 2.2'

gem 'kaminari', '~> 1.2'
Expand All @@ -73,9 +70,9 @@ gem 'jbuilder', '~> 2.11'

gem 'rspec_api_documentation', '~> 6.1'

gem 'acts-as-taggable-on', '~> 9.0'
gem 'acts-as-taggable-on', '~> 11.0.0'

gem 'administrate-field-acts_as_taggable', '~> 0.0.4'
gem 'administrate-field-acts_as_taggable'

gem 'administrate-field-list', '~> 0.0.6'

Expand Down
Loading

0 comments on commit e8920f6

Please sign in to comment.