Files
url-shortener/Gemfile
T
bucky 28fc8b3b86
Gitea Bucky/url-shortener/pipeline/head There was a failure building this commit
updated Gemfile with falcon instead of puma
2023-12-18 20:15:33 -08:00

37 lines
489 B
Ruby

# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rackup', '~> 2.1'
gem 'falcon', '~> 0.42.3'
gem 'roda', '~> 3.72'
gem 'sequel', '~> 5.72'
gem 'tilt', '~> 2.2'
gem 'sqlite3', '~> 1.6'
gem 'erubi', '~> 1.12'
group :test do
gem 'cucumber', '~> 9.0'
gem 'capybara', '~> 3.39'
gem 'rspec', '~> 3.12'
gem 'selenium-webdriver', '~> 4.13'
gem 'simplecov'
gem 'rubocop', require: false
gem 'ruby_audit', '~> 2.2'
gem 'bundle-audit', '~> 0.1.0'
end