You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
363 B
26 lines
363 B
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
|
|
# gem "rails"
|
|
|
|
gem "sinatra", "~> 4.2"
|
|
|
|
gem "sqlite3", "~> 2.9"
|
|
|
|
gem "sequel", "~> 5.101"
|
|
|
|
gem "puma", "~> 7.2"
|
|
|
|
gem "rackup", "~> 2.3"
|
|
|
|
gem "rubyzip", "~> 3.2"
|
|
|
|
gem "jwt", "~> 3.1"
|
|
|
|
gem "openssl", "~> 4.0"
|
|
|
|
gem "i18n", "~> 1.14"
|