2025-06-06 21:12:46 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2025-06-06 18:50:32 +02:00
|
|
|
source 'https://rubygems.org'
|
|
|
|
|
|
|
|
|
|
gem 'json', '~> 2.6'
|
2025-06-06 21:12:46 +02:00
|
|
|
gem 'puma', '~> 6.0'
|
|
|
|
|
gem 'sinatra', '~> 3.0'
|
2025-06-06 18:55:54 +02:00
|
|
|
gem 'yaml', '~> 0.2'
|
2025-06-06 18:50:32 +02:00
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
|
gem 'rerun'
|
|
|
|
|
end
|
2025-06-06 21:12:46 +02:00
|
|
|
|
|
|
|
|
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
|