Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
313569c
modernize RSpec use
rdnewmanbot Oct 27, 2025
87e3a5c
upgrade to Ruby 3.4.7
rdnewmanbot Oct 27, 2025
9a2c408
updated minor versions or minor gems in Gemfile; RSpec still passes
rdnewmanbot Oct 27, 2025
efac88c
address StandardRB linting issues
rdnewmanbot Oct 27, 2025
12ec028
finish updating gems as far as possible under Rails 7.0
rdnewmanbot Oct 27, 2025
4d418a9
make sure at the end of Rails 7.0
rdnewmanbot Oct 27, 2025
c64d205
break down factories
rdnewmanbot Oct 29, 2025
3393281
break down factories
rdnewmanbot Oct 29, 2025
b90f7f6
upgrade to Rails 7.1, aligning to 7.1 conventions and settings
rdnewmanbot Nov 6, 2025
2e32083
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
c4ce4fa
fix linting
rdnewmanbot Nov 13, 2025
8cfdbfb
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
a1cfac5
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
8919787
move diagnostic code to a better spot
rdnewmanbot Nov 13, 2025
bdada1a
retry diagnostic code
rdnewmanbot Nov 13, 2025
7ffbd4f
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
7cefbf8
restore the older way of load lib directory in case the newer way is …
rdnewmanbot Nov 13, 2025
5a7b6f6
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
ec4928a
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
254a6e6
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
2ce1942
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
840f757
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
c1b604e
try to resolve CI build issues for 7.1
rdnewmanbot Nov 13, 2025
7b14620
try to diagnose CI build issues for 7.1
rdnewmanbot Nov 13, 2025
66eaa08
try to diagnose CI build issues for 7.1
rdnewmanbot Nov 14, 2025
589a916
try to diagnose CI build issues for 7.1
rdnewmanbot Nov 14, 2025
d31cb29
try to diagnose CI build issues for 7.1
rdnewmanbot Nov 14, 2025
05e861b
revert to original workflow re bundling; try remove previews in test …
rdnewmanbot Nov 14, 2025
0f20d4b
try to fix CI build issues for 7.1
rdnewmanbot Nov 14, 2025
8fbdb66
try to fix CI build issues for 7.1
rdnewmanbot Nov 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/rspec-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ jobs:
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec rspec
- name: Run tests
run: bundle exec rspec
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.6
3.4.7
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
nodejs 20.18.0
ruby 3.3.6
ruby 3.4.7
yarn 1.22.22
11 changes: 7 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source "https://rubygems.org"

ruby "3.3.6"
ruby "3.4.7"

git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
Expand All @@ -14,6 +14,7 @@ gem "bootsnap"
gem "bourbon"
gem "clearance"
gem "coffee-rails"
gem "concurrent-ruby", "1.3.4"
gem "csv"
gem "delayed_job_active_record"
gem "drb"
Expand Down Expand Up @@ -50,7 +51,7 @@ gem "psych"
gem "puma"
gem "rack", ">= 2.2.14", "< 3.0"
gem "rack-rewrite"
gem "rails", "7.0.8.7"
gem "rails", "7.1.5"
gem "recipient_interceptor"
gem "redcarpet"
gem "redis"
Expand All @@ -72,14 +73,16 @@ gem "wrapped"

group :development do
gem "guard-livereload", require: false
gem "irb"
gem "rack-livereload"
gem "rack-mini-profiler", require: false
gem "spring"
gem "spring-commands-rspec"
# gem "spring", "~> 4.2.1"
# gem "spring-commands-rspec"
gem "webrick"
end

group :development, :test do
gem "benchmark"
gem "bundler-audit", require: false
gem "dotenv-rails"
gem "rspec-rails"
Expand Down
Loading
Loading