gemini-suggestions, tests-fail

This commit is contained in:
Ole-Morten Duesund 2025-06-06 21:12:46 +02:00
commit 314bffc4f8
8 changed files with 429 additions and 15 deletions

18
Gemfile
View file

@ -1,10 +1,24 @@
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'sinatra', '~> 3.0'
gem 'puma', '~> 6.0'
gem 'json', '~> 2.6'
gem 'puma', '~> 6.0'
gem 'sinatra', '~> 3.0'
gem 'yaml', '~> 0.2'
group :development do
gem 'rerun'
end
group :development, :test do
gem 'rack-test' # For HTTP integration tests
# Choose one testing framework:
gem 'minitest' # Uncomment this line if you prefer Minitest
gem 'rspec' # Uncomment this line if you prefer RSpec
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rspec'
end