Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
cycomachead committed Sep 26, 2023
2 parents 9dce140 + 25fe0c4 commit 2b54cdc
Show file tree
Hide file tree
Showing 58 changed files with 2,970 additions and 3,479 deletions.
4 changes: 3 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 2.7
# TODO: rubocop needs to be updated for 3.2
TargetRubyVersion: 3.1
# RuboCop has a bunch of cops enabled by default. This setting tells RuboCop
# to ignore them, so only the ones explicitly set in this file are enabled.
DisabledByDefault: true
Expand Down Expand Up @@ -104,6 +105,7 @@ Layout/IndentationConsistency:
# Two spaces, no tabs (for indentation).
Layout/IndentationWidth:
Enabled: true
Width: 2

Layout/LeadingCommentSpace:
Enabled: true
Expand Down
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ruby 3.2.2
nodejs 16.20.2
23 changes: 10 additions & 13 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ gem "rails", "6.1.7.4"

# Production app server
gem "puma", "~> 5"
gem "pg", "~> 1.0"
gem "pg", "~> 1.5"

# Front-end Assets
gem "webpacker", "~> 4"
gem "webpacker"

# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.4", require: false
Expand Down Expand Up @@ -45,6 +45,12 @@ gem "aws-sdk-s3", require: false
# Render images for file uploads in pages
gem "image_processing", ">= 1.2"

gem "selectize-rails"
gem "smarter_csv", "~> 1.4"
gem "activerecord-import", require: false

gem "httparty", "~> 0.21.0"

group :development do
gem "annotate"
gem "guard"
Expand Down Expand Up @@ -86,26 +92,17 @@ end
# setup Cucumber, RSpec, Guard support
group :test do
gem "rspec-rails"
gem "simplecov", "< 0.18", require: false
gem "simplecov", require: false
gem "simplecov-json", require: false
gem "simplecov-console", require: false
gem "simplecov-csv", require: false
gem "cucumber-rails", require: false
gem "database_cleaner"
gem "factory_bot_rails"
gem "metric_fu"
# gem "metric_fu" # removed until ruby 3.x compat is fixed.
gem "selenium-webdriver"

gem "webdrivers"
# Accessibility Testing
gem "axe-core-rspec"
gem "axe-core-cucumber"

gem "rails-controller-testing"
end

gem "selectize-rails"
gem "smarter_csv", "~> 1.4"
gem "activerecord-import", require: false

gem "httparty", "~> 0.21.0"
Loading

0 comments on commit 2b54cdc

Please sign in to comment.