gemini-suggestions, tests-fail
This commit is contained in:
parent
7c1c314b70
commit
314bffc4f8
8 changed files with 429 additions and 15 deletions
18
Gemfile
18
Gemfile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue