26 lines
529 B
Ruby
26 lines
529 B
Ruby
# frozen_string_literal: true
|
|
|
|
source "https://rubygems.org"
|
|
|
|
# # web
|
|
gem "puma", "~> 5"
|
|
gem "sinatra", "~> 2"
|
|
gem "sinatra-contrib", "~> 2"
|
|
# gem "slim", "~> 4"
|
|
|
|
# discord, irc, ...
|
|
# gem "discordrb", git: "https://github.com/shardlab/discordrb"
|
|
gem "discordrb", github: "shardlab/discordrb", glob: '*.gemspec' # ref: "dc27fe18463da3ccfd0f0266030aa7ad51b2c2b9"
|
|
|
|
# debug and helpers
|
|
gem "activesupport", "~> 7"
|
|
gem "colorize", "~> 0"
|
|
|
|
# environment management
|
|
gem "dotenv", "~> 2"
|
|
|
|
# tests
|
|
group :test do
|
|
gem "pry", "~> 0"
|
|
end
|