-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add infrastructure gems * Rubocop * Clean up * Run `rails generate rspec:install` * Enable CI for the integration branch * Bump Ruby to 3.3.4 * Rubocop autocorrect * Update gems * Rubocop autocorrect * Run `rails app:update:bin` * Run `rails db:migrate` to generate schema, and `rails db:reset` * Update DB configuration * Drop autogenerated credentials
- Loading branch information
1 parent
42a6943
commit a44a266
Showing
37 changed files
with
884 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby-3.2.2 | ||
ruby-3.3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ruby 3.3.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,42 @@ | ||
source "https://rubygems.org" | ||
|
||
ruby "3.2.2" | ||
ruby "3.3.4" | ||
|
||
gem "amazing_print" | ||
gem "bootsnap", require: false | ||
gem "jsbundling-rails" | ||
gem "pg", "~> 1.1" | ||
gem "pg", "~> 1.5" | ||
gem "propshaft" | ||
gem "puma", ">= 5.0" | ||
gem "pry", "~> 0.14" | ||
gem "pry-byebug" | ||
gem "pry-rails", "~> 0.3.9" | ||
gem "puma", "~> 6.4" | ||
gem "rails", "~> 7.1.3", ">= 7.1.3.4" | ||
gem "stimulus-rails" | ||
gem "turbo-rails" | ||
gem "tzinfo-data" | ||
|
||
group :development, :test do | ||
gem "debug" | ||
end | ||
|
||
group :development do | ||
gem "brakeman", "~> 6.1", require: false | ||
gem "bundler-audit", "~> 0.9", require: false | ||
gem "reek", "~> 6.3", require: false | ||
gem "rubocop", require: false | ||
gem "rubocop-factory_bot", require: false | ||
gem "rubocop-rails", require: false | ||
gem "rubocop-rspec", require: false | ||
gem "rubocop-rspec_rails", "~> 2.30" | ||
gem "standard", ">= 1.0", require: false | ||
gem "standard-performance", require: false | ||
gem "web-console" | ||
gem "yaml-lint", "~> 0.1.2", require: false | ||
end | ||
|
||
group :development, :test do | ||
gem "annotate", "~> 3.2" | ||
gem "debug" | ||
gem "factory_bot_rails", "~> 6.4" | ||
gem "marginalia", "~> 1.11" | ||
gem "rspec-rails", "~> 6.1" | ||
gem "simplecov", "~> 0.22" | ||
gem "webmock", "~> 3.23" | ||
end |
Oops, something went wrong.