28 lines
378 B
Ruby
28 lines
378 B
Ruby
# 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"
|
|
|
|
gem "ostruct"
|